summaryrefslogtreecommitdiffstats
path: root/main/pingu/pingu.initd
blob: 93aaebe10c6fffb48e6c0c22c1e87f33a2db098f (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
#!/sbin/runscript

# Sample init.d file for alpine linux.

NAME=pingu
DAEMON=/usr/bin/$NAME

depend() {
	need net
	after firewall
}

start() {
	ebegin "Starting ${NAME}"
		start-stop-daemon --start --quiet \
			--pidfile /var/run/${NAME}.pid \
			--exec ${DAEMON} -- -d
	eend $?
}

stop() {
	ebegin "Stopping ${NAME}"
		start-stop-daemon --stop --quiet \
			--exec ${DAEMON} \
			--pidfile /var/run/${NAME}.pid
	eend $?
}