X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=146bc1e0198dcdfea0dd6751d388820a966de28f;hb=110c86bdb7f0b5bd904e8baa95e8673ecfe28719;hp=63cf3b23ec478a5380b76109b919d401cf349677;hpb=f4b1a6d842465b806c79791ace97283b13e6976b;p=kernel-cn.git diff --git a/debian/postinst b/debian/postinst index 63cf3b2..146bc1e 100755 --- a/debian/postinst +++ b/debian/postinst @@ -89,7 +89,7 @@ echo "." # detect existing Grub2 installation GRUB2="no" -if [ -e /boot/grub/grub.cfg ]; then +if [ \( -e /boot/grub/grub.cfg \) -o \( -e /boot/grub/core.img \) ]; then echo "CN: Detected GRUB2 installation, will try to use it." GRUB2="yes" if [ -e /boot/grub/menu.lst ]; then @@ -178,6 +178,7 @@ if [ "x$GRUB2" = "xno" ]; then fi else # Grub2 part + touch /boot/grub/grub.cfg update-grub >/dev/null 2>&1 || true fi echo -n " grub2" @@ -232,7 +233,8 @@ EOF fi else # Grub2 part - grub-mkdevicemap -n + grub-mkdevicemap --no-floppy + grub-install --no-floppy --grub-setup=/bin/true "$(grub-probe /boot/grub)" >/dev/null 2>&1 fi echo -n " grub3" @@ -267,7 +269,7 @@ if [ "x$GRUB2" = "xno" ]; then fi else # Grub2 part - install_device='(hd0)' + install_device="$(grub-probe /boot/grub)" fi echo -n " grub4" @@ -382,7 +384,7 @@ rm -f /etc/sysctl.conf.$$ # old kernel params (skipping some of the obsolete or overrided entries) if [ -e /etc/sysctl.conf ]; then - egrep -v 'net\.core\.(r|w)mem_max|net\.ipv4\.tcp_(r|w)mem|vm\.bdflush|net\.ipv4\.ip_local_port_range|kernel\.rtsig-max|net\.ipv4\.tcp_syncookies|kernel\.exec-shield|net\.ipv4\.tcp_max_syn_backlog|net\.ipv4\.tcp_congestion_control|kernel\.exec-shield' \ + egrep -v 'net\.core\.(r|w)mem_max|net\.ipv4\.tcp_(r|w)mem|vm\.bdflush|net\.ipv4\.ip_local_port_range|kernel\.rtsig-max|net\.ipv4\.tcp_syncookies|kernel\.exec-shield|net\.ipv4\.tcp_max_syn_backlog|net\.ipv4\.tcp_congestion_control|kernel\.exec-shield|kernel\.maps_protect' \ /etc/sysctl.conf >> /etc/sysctl.conf.$$ fi @@ -390,6 +392,13 @@ fi cp_mv /etc/sysctl.conf.$$ /etc/sysctl.conf echo -n " sysctl.conf" +# reload sysctl ASAP +if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d procps restart >/dev/null 2>&1 || true +else + /etc/init.d/procps restart >/dev/null 2>&1 || true +fi + # finished with basic kernel-2.6-cn stuff echo "."