aboutsummaryrefslogtreecommitdiff
path: root/rc.multi
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2011-03-26 16:31:57 -0400
committerTom Gundersen <teg@jklm.no>2011-03-29 20:09:59 +0000
commiteba1d8c146be5db20dc030eaee7a75c8ddec25eb (patch)
treed088845ffd879cb974c56eb71c421cc5305457b5 /rc.multi
parent508b8e8dc48190ca009904048db0f3bde61c195e (diff)
downloadinitscripts-eba1d8c146be5db20dc030eaee7a75c8ddec25eb.tar.xz
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-xrc.multi12
1 files changed, 6 insertions, 6 deletions
diff --git a/rc.multi b/rc.multi
index 660f649..693223d 100755
--- a/rc.multi
+++ b/rc.multi
@@ -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: