aboutsummaryrefslogtreecommitdiff
path: root/rc.multi
diff options
context:
space:
mode:
Diffstat (limited to 'rc.multi')
-rwxr-xr-xrc.multi5
1 files changed, 2 insertions, 3 deletions
diff --git a/rc.multi b/rc.multi
index 8050e98..731e48e 100755
--- a/rc.multi
+++ b/rc.multi
@@ -13,10 +13,9 @@
for daemon in "${DAEMONS[@]}"; do
if [ "$daemon" = "${daemon#!}" ]; then
if [ "$daemon" = "${daemon#@}" ]; then
- /etc/rc.d/$daemon start
+ start_daemon $daemon
else
- stat_bkgd "Starting ${daemon:1}"
- (/etc/rc.d/${daemon:1} start) &>/dev/null &
+ start_daemon_bkgd ${daemon:1}
fi
fi
done