From 78a6fad8f45cc32735b8e17a5df039854a83ed58 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 24 Mar 2012 18:34:17 -0400 Subject: shutdown: add vim modeline, fix whitespacing Make this consistent with the rest of the codebase. Signed-off-by: Dave Reisner --- shutdown | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/shutdown b/shutdown index 39bcb97..aad0198 100755 --- a/shutdown +++ b/shutdown @@ -3,24 +3,26 @@ findmnt -Rruno TARGET /oldroot | awk ' BEGIN { i = 0 } ! /^\/(proc|dev|sys)/ { - i++ - mounts[i] = $0 + i++ + mounts[i] = $0 } END { - for (j = i; j > 0; j--) { - print mounts[j] - } + for (j = i; j > 0; j--) { + print mounts[j] + } } ' | while read -r mount; do - umount -l "$mount" + umount -l "$mount" done case $1 in - poweroff|shutdown|halt) - "$1" -f - ;; - *) - type kexec >/dev/null && kexec -e - reboot -f - ;; + poweroff|shutdown|halt) + "$1" -f + ;; + *) + type kexec >/dev/null && kexec -e + reboot -f + ;; esac + +# vim: ft=sh ts=4 sw=4 -- cgit v1.2.3-24-g4f1b