diff options
author | Anton Fiuman <llexiw@gmail.com> | 2008-05-25 00:55:56 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2008-05-27 16:27:20 +0200 |
commit | fa73767d19ea505ec32533b8856122968207db2f (patch) | |
tree | 0d9695f3a40b86b29076719029a5b14578927e23 /functions | |
parent | 63db98c2a8e256f9219c5c6501b40846040bf089 (diff) |
Allow users to ovverride daemon start and stop in rc.multi and rc.shutdown
Signed-off-by: Anton Fiuman <llexiw@gmail.com>
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -151,6 +151,19 @@ ck_depends() { done } +start_daemon() { + /etc/rc.d/$1 start +} + +start_daemon_bkgd() { + stat_bkgd "Starting $1" + (/etc/rc.d/$1 start) &>/dev/null & +} + +stop_daemon() { + /etc/rc.d/$1 stop +} + #Source additional functions at the end to allow overrides if [ -d /etc/rc.d/functions.d/ ]; then for f in $(/bin/ls /etc/rc.d/functions.d/); do |