mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
590e9e05b6
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
451 B
Bash
34 lines
451 B
Bash
#!/bin/sh
|
|
#
|
|
# Start netatalk
|
|
#
|
|
|
|
start() {
|
|
echo "Starting Netatalk"
|
|
start-stop-daemon -S -q -p /var/run/netatalk.pid --exec /usr/sbin/netatalk
|
|
}
|
|
|
|
stop(){
|
|
echo "Stopping Netatalk"
|
|
start-stop-daemon -K -q -p /var/run/netatalk.pid
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
start
|
|
stop
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|
|
|