diff options
author | Dave Reisner <d@falconindy.com> | 2011-03-26 16:31:57 -0400 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2011-03-29 20:09:59 +0000 |
commit | eba1d8c146be5db20dc030eaee7a75c8ddec25eb (patch) | |
tree | d088845ffd879cb974c56eb71c421cc5305457b5 /rc.shutdown | |
parent | 508b8e8dc48190ca009904048db0f3bde61c195e (diff) |
whitespace cleanup
* adhere to a consistant vim modeline
* use top-right/bottom-left braces for functions
Signed-off-by: Dave Reisner <d@falconindy.com>
Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-x | rc.shutdown | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rc.shutdown b/rc.shutdown index 0acca49..499459f 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -43,9 +43,9 @@ fi HWCLOCK_PARAMS="--systohc" case $HARDWARECLOCK in - UTC) HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc";; - localtime) HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime";; - *) HWCLOCK_PARAMS="";; + UTC) HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc";; + localtime) HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime";; + *) HWCLOCK_PARAMS="";; esac [[ $HWCLOCK_PARAMS ]] && /sbin/hwclock $HWCLOCK_PARAMS stat_done @@ -87,9 +87,9 @@ if [[ -f /etc/crypttab && -n $CS ]] && /bin/grep -q ^[^#] /etc/crypttab; then fi if [[ $USELVM =~ yes|YES && -x /sbin/lvm && -d /sys/block ]]; then - stat_busy "Deactivating LVM2 groups" - /sbin/vgchange --sysinit -a n >/dev/null 2>&1 - stat_done + stat_busy "Deactivating LVM2 groups" + /sbin/vgchange --sysinit -a n >/dev/null 2>&1 + stat_done fi stat_busy "Remounting Root Filesystem Read-only" |