X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=6105c82b770cfe2a6147a30a2e28152ce360448a;hb=refs%2Fheads%2Fetch;hp=ce9b5d6fd7edc88ae91dcd498854aca4a217a77c;hpb=e5c46f37624fbd8c6e7fb400e2f2019af3431c11;p=kernel-cn.git diff --git a/debian/postinst b/debian/postinst index ce9b5d6..6105c82 100755 --- a/debian/postinst +++ b/debian/postinst @@ -130,28 +130,31 @@ fi echo -n " grub2" # workaround grsec -if [ -x /sbin/chpax ]; then - if [ -x /usr/sbin/grub ]; then - chpax -spmrx /usr/sbin/grub || true +if uname -a | grep -q grsec; then + if [ -x /sbin/chpax ]; then + # grub + if [ -x /usr/sbin/grub.real ]; then + chpax -spmrx /usr/sbin/grub.real >/dev/null 2>&1 || true + elif [ -x /usr/sbin/grub ]; then + chpax -spmrx /usr/sbin/grub >/dev/null 2>&1 || true + fi + + # grub-probe + if [ -x /usr/sbin/grub-probe.real ]; then + chpax -spmrx /usr/sbin/grub-probe.real >/dev/null 2>&1 || true + elif [ -x /usr/sbin/grub-probe ]; then + chpax -spmrx /usr/sbin/grub-probe >/dev/null 2>&1 || true + fi + + echo -n " grsec" fi - if [ -x /usr/sbin/grub-probe ]; then - chpax -spmrx /usr/sbin/grub-probe || true - fi -fi -echo -n " grub3" - -# workaround execshield -SHIELD=$(sysctl -e -n kernel.exec-shield) -if [ ! -z "$SHIELD" ]; then - sysctl -e -w kernel.exec-shield=0 >/dev/null 2>&1 - echo -n " execshield1" fi # remove obsolete devfs/compat links and restore normal udev behaviour rm -f /etc/udev/rules.d/devfs.rules /etc/udev/rules.d/compat.rules \ /etc/udev/rules.d/compat-full.rules if [ ! -e /etc/udev/rules.d/udev.rules ]; then - ln -s ../udev.rules /etc/udev/rules.d/udev.rules + ln -sf ../udev.rules /etc/udev/rules.d/udev.rules fi udevcontrol reload_rules >/dev/null 2>&1 || true udevsettle || true @@ -172,7 +175,7 @@ if [ ! -s "$device_map" ]; then else rm -f "$device_map.old" fi -echo -n " grub4" +echo -n " grub3" # import GRUB helper functions (again, updated device map) . /usr/share/kernel-2.6-cn/grub-functions.sh @@ -201,7 +204,7 @@ if [ -h "$install_device" ]; then || true fi fi -echo -n " grub5" +echo -n " grub4" # install GRUB loader if ! grub-install --no-floppy "$install_device" >/dev/null 2>&1; then @@ -210,7 +213,7 @@ if ! grub-install --no-floppy "$install_device" >/dev/null 2>&1; then echo "CN: Do not reboot your server and report this to OTRS immediately!" exit 1 fi -echo -n " grub6" +echo -n " grub5" # fix possible wrong params in menu.lst cp_check_and_sed '^# groot=' \ @@ -220,7 +223,7 @@ cp_check_and_sed '^# kopt=' \ "s;^# kopt=\(.*\)root=[^[:space:]]*\(.*\);# kopt=\1root=$root_device\2;g" \ "$menu_file" || true /usr/sbin/update-grub >/dev/null 2>&1 || true -echo -n " grub7" +echo -n " grub6" # and final stage of devfs/udev brokeness fix if [ "x$install_device_resolved" != "x$install_device" ]; then @@ -245,13 +248,7 @@ if [ "x$install_device_resolved" != "x$install_device" ]; then "s;\(^kernel.*\)root=[^[:space:]]*\(.*\);\1root=$root_device\2;g" \ "$menu_file" || true fi -echo -n " grub8" - -# restore execshield state -if [ ! -z "$SHIELD" ]; then - sysctl -e -w "kernel.exec-shield=$SHIELD" >/dev/null 2>&1 - echo -n " execshield2" -fi +echo -n " grub7" # disable lilo if [ -e /etc/lilo.conf ]; then