diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/hula/hula-script |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/hula/hula-script')
-rw-r--r-- | community/hula/hula-script | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/community/hula/hula-script b/community/hula/hula-script new file mode 100644 index 000000000..ccfd52aba --- /dev/null +++ b/community/hula/hula-script @@ -0,0 +1,39 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +DAEMON_NAME="hulamanager" +DAEMON_PATH="/usr/sbin/${DAEMON_NAME}" + +PID=`pidof -o %PPID ${DAEMON_NAME}` +case "$1" in + start) + stat_busy "Starting ${DAEMON_NAME}" + [ -z "$PID" ] && ${DAEMON_PATH} -d + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon ${DAEMON_NAME} + stat_done + fi + ;; + stop) + stat_busy "Stopping ${DAEMON_NAME}" + [ ! -z "$PID" ] && ${DAEMON_PATH} --stop &>/dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon ${DAEMON_NAME} + stat_done + fi + ;; + restart) + $0 stop + sleep 3 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" +esac +exit 0 |