summaryrefslogtreecommitdiffstats
path: root/package/ptpd/S65ptpd
blob: 4206c5e0c97edf776cc9ff56cf1478c2040b0bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
#
# Start ptpd
#

case "$1" in
  start)
	echo -n "Starting ptpd: "
	start-stop-daemon -S -q -x /usr/sbin/ptpd -- -S
	if [ $? != 0 ]; then
		echo "FAILED"
		exit 1
	else
		echo "OK"
	fi
	;;
  stop)
	echo -n "Stopping ptpd: "
	start-stop-daemon -K -q -x /usr/sbin/ptpd
	echo "OK"
	;;
  restart|reload)
	;;
  *)
	echo "Usage: $0 {start|stop|restart}"
	exit 1
esac

exit $?