aboutsummaryrefslogtreecommitdiff
path: root/rc.multi
diff options
context:
space:
mode:
Diffstat (limited to 'rc.multi')
-rwxr-xr-xrc.multi7
1 files changed, 3 insertions, 4 deletions
diff --git a/rc.multi b/rc.multi
index 94c2dba..d8a1881 100755
--- a/rc.multi
+++ b/rc.multi
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#
# /etc/rc.multi
#
@@ -8,8 +8,8 @@
# Start daemons
for daemon in "${DAEMONS[@]}"; do
- if [[ `echo $daemon | grep '^[^\!]' | wc -l` -eq 1 ]]; then
- if [[ `echo $daemon | grep '^[^\@]' | wc -l` -eq 1 ]]; then
+ if [ "$daemon" = "${daemon#!}" ]; then
+ if [ "$daemon" = "${daemon#@}" ]; then
/etc/rc.d/$daemon start
else
stat_bkgd "Starting ${daemon:1}"
@@ -25,5 +25,4 @@ if [ -x /etc/rc.local ]; then
/etc/rc.local
fi
-# End of file
# vim: set ts=2 noet: