summaryrefslogtreecommitdiffstats
path: root/extra/pingu/pingu.initd
blob: 39301f80e48235268f9af979e85f432e8c624572 (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
#!/sbin/runscript

# Sample init.d file for alpine linux.

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

depend() {
	need net
}

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 $?
}