summaryrefslogtreecommitdiff
path: root/package/uvd/files/uvd.init
blob: 14ec12c30b6da1aad0d7a2e31a3c776ca087a7c4 (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
#!/bin/sh
#PKG uvd
#INIT 90

. /etc/rc.conf

case $1 in
autostop) ;;
autostart)
	test x"${uvd:-NO}" = x"NO" && exit 0
	exec sh $0 start
	;;
start)
	/usr/sbin/uvd
	;;
stop)
	kill $(pgrep -f /usr/sbin/uvd)
	;;
restart)
	sh $0 stop
	sh $0 start
	;;
*)
	echo "usage: $0 (start|stop|restart)"
	exit 1
esac
exit $?