PKGBUILDs/aur/netatalk/afpd

39 lines
677 B
Text
Raw Normal View History

2011-01-27 02:03:22 +00:00
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
PID=$(pidof -o %PPID /usr/sbin/afpd)
case $1 in
start)
stat_busy "Starting afpd Daemon"
2011-06-09 21:49:39 +00:00
[ -z "$PID" ] && /usr/sbin/afpd
2011-01-27 02:03:22 +00:00
if [ $? -gt 0 ]; then
stat_fail
else
PID=$(pidof -o %PPID /usr/sbin/afpd)
echo "$PID" > /var/run/afpd.pid
add_daemon afpd
stat_done
fi
;;
stop)
stat_busy "Stopping afpd Daemon"
2011-06-09 21:49:39 +00:00
[ ! -z "$PID" ] && kill "$PID" &> /dev/null
2011-01-27 02:03:22 +00:00
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon afpd
stat_done
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0