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.multi | |
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.multi')
-rwxr-xr-x | rc.multi | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -13,11 +13,11 @@ run_hook multi_start # Start daemons for daemon in "${DAEMONS[@]}"; do - case ${daemon:0:1} in - '!') continue;; # Skip this daemon. - '@') start_daemon_bkgd "${daemon#@}";; - *) start_daemon "$daemon";; - esac + case ${daemon:0:1} in + '!') continue;; # Skip this daemon. + '@') start_daemon_bkgd "${daemon#@}";; + *) start_daemon "$daemon";; + esac done if [[ -x /etc/rc.local ]]; then @@ -26,4 +26,4 @@ fi run_hook multi_end -# vim: set ts=2 noet: +# vim: set ts=2 sw=2 noet: |