06bba6f68f
0.1.0 is a complete rewrite @hippoz, @hippoz it is supposed to clean up aps. :trol:
18 lines
356 B
Bash
Executable file
18 lines
356 B
Bash
Executable file
#!/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
|
|
}
|