From 85bec473cb845942e27c341d6410f60f6e4460c7 Mon Sep 17 00:00:00 2001 From: Dinko Korunic Date: Thu, 28 Apr 2011 14:49:40 +0200 Subject: [PATCH] - small typo for then --- debian/postinst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/debian/postinst b/debian/postinst index 7e0d953..4483849 100755 --- a/debian/postinst +++ b/debian/postinst @@ -89,7 +89,7 @@ echo "." # detect existing Grub2 installation GRUB2="no" -if [ -e /boot/grub/grub.cfg ]; +if [ -e /boot/grub/grub.cfg ]; then echo "CN: Detected GRUB2 installation, will try to use it." GRUB2="yes" if [ -e /boot/grub/menu.lst ]; then @@ -172,13 +172,13 @@ if [ "x$GRUB2" = "xno" ]; then fi fi if [ ! -e "$menu_file" ]; then - yes | /usr/sbin/update-grub >/dev/null 2>&1 || true + yes | update-grub >/dev/null 2>&1 || true else - /usr/sbin/update-grub >/dev/null 2>&1 || true + update-grub >/dev/null 2>&1 || true fi else # Grub2 part - /usr/sbin/update-grub >/dev/null 2>&1 || true + update-grub >/dev/null 2>&1 || true fi echo -n " grub2" @@ -289,7 +289,7 @@ if [ "x$GRUB2" = "xno" ]; then "s;^# kopt=\(.*\)root=[^[:space:]]*\(.*\);# kopt=\1root=$root_device\2;g" \ "$menu_file" || true fi -/usr/sbin/update-grub >/dev/null 2>&1 || true +update-grub >/dev/null 2>&1 || true echo -n " grub6" # fix possible wrong params in menu.lst -- 1.7.10.4