# workaround execshield
SHIELD=$(sysctl -e -n kernel.exec-shield)
if [ ! -z "$SHIELD" ]; then
- sysctl -w -e kernel.exec-shield=0 >/dev/null 2>&1
+ sysctl -e -w kernel.exec-shield=0 >/dev/null 2>&1
echo -n " execshield1"
fi
echo -n " grub6"
# fix possible wrong params in menu.lst
+root_device=/dev/sda6
+grub_root_device=$(convert_default "$root_device")
cp_check_and_sed '^# groot=' \
"s;^# groot=.*;# groot=$grub_root_device;g" \
"$menu_file" || true
# restore execshield state
if [ ! -z "$SHIELD" ]; then
- sysctl -w -e "kernel.exec-shield=$SHIELD" >/dev/null 2>&1
+ sysctl -e -w "kernel.exec-shield=$SHIELD" >/dev/null 2>&1
echo -n " execshield2"
fi