mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
44 lines
678 B
Bash
44 lines
678 B
Bash
#!/bin/bash
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
NAME="Appletalk Services Daemon"
|
|
ARGS=
|
|
DAEMON=netatalk
|
|
|
|
[ -r /etc/conf.d/$DAEMON ] && . /etc/conf.d/$DAEMON
|
|
|
|
PID=`get_pid $DAEMON`
|
|
|
|
case "$1" in
|
|
start)
|
|
stat_busy "Starting $NAME"
|
|
[ -z "$PID" ] && $DAEMON $ARGS &>/dev/null
|
|
if [ $? = 0 ]; then
|
|
add_daemon $DAEMON
|
|
stat_done
|
|
else
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
;;
|
|
stop)
|
|
stat_busy "Stopping $NAME"
|
|
[ -n "$PID" ] && kill $PID &>/dev/null
|
|
if [ $? = 0 ]; then
|
|
rm_daemon $DAEMON
|
|
stat_done
|
|
else
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 {start|stop|restart}"
|
|
esac
|