aps/altools/dae

19 lines
356 B
Text
Raw Normal View History

#!/bin/sh
###########################
# DAE, the deamon manager #
###########################
function daemonctl(){
case $1 in
stop) . /etc/al/serivces/$2.alsysd
stop ;;
start) . /etc/al/services/$2.alsysd
start ;;
esac
case $2 in
--verbose) set -x ;;
*) ;;
esac
}