diff options
author | Sébastien Luttringer <seblu@seblu.net> | 2012-06-10 03:46:34 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2012-06-23 14:00:17 +0200 |
commit | 911439c4411be3ba0bab41b8f11ce0598b0cae9d (patch) | |
tree | de8c4c75e4ee0220858b41740fae095e1b76e903 /functions | |
parent | dad9b760821b8699da8efffb230c3bf564392a38 (diff) |
Remove ck_depends
ck_depends is no more used and should not be used anymore
Signed-off-by: Sébastien Luttringer <seblu@seblu.net>
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -229,15 +229,6 @@ start_daemon() { have_daemon "$1" && /etc/rc.d/"$1" start } -# Never use this function, it causes daemons to be stoped in the wrong order. -# The only way to start a daemon at boot is to add it to the DAEMONS array. -ck_depends() { - local daemon - for daemon; do - ck_daemon "$daemon" && start_daemon "$daemon" - done -} - start_daemon_bkgd() { stat_bkgd "Starting $1" (start_daemon "$1") >/dev/null & |