[Pm-utils] [PATCH 04/17] Fix up 01grub to exit $NA when the hook is not applicable.

Victor Lowther victor.lowther at gmail.com
Sat Feb 16 12:29:55 PST 2008


Also get rid of redundant calls to exit.
---
 pm/sleep.d/01grub |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/pm/sleep.d/01grub b/pm/sleep.d/01grub
index ddc39ce..649a2b6 100644
--- a/pm/sleep.d/01grub
+++ b/pm/sleep.d/01grub
@@ -6,29 +6,27 @@ default_resume_kernel()
 	i?86|x86_64|athlon)
 	    ;;
 	*) # this is only valid for x86 and x86_64
-	    return 1
+	    return $NA
 	    ;;
     esac
 
-    [ -x /sbin/grubby -a -x /sbin/grub ] || return 1
+    [ -x /sbin/grubby -a -x /sbin/grub ] || return $NA
     [ -e "/boot/vmlinuz-$(uname -r)" ] || return 1
 
     out=$(/sbin/grubby --info /boot/vmlinuz-$(uname -r) |grep index)
     [ -n "${out}" ] || return 1
     current=${out#index=}
-    echo "savedefault --default=${current} --once" | /sbin/grub --batch --no-floppy --device-map=/boot/grub/device.map --no-curses >/dev/null
+    echo "savedefault --default=${current} --once" | \
+    	/sbin/grub --batch --no-floppy --device-map=/boot/grub/device.map \
+	--no-curses >/dev/null
 
     return 0
 }
 
-RETVAL=0
 case "$1" in
 	hibernate)
 		default_resume_kernel
-		RETVAL=$?
 		;;
-	*)
+	*) exit $NA
 		;;
 esac
-
-exit $RETVAL
-- 
1.5.3.8



More information about the Pm-utils mailing list