blob: 7f9518efce7f33feda01f81cf73502a90b0fbc62 (
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/sbin/$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 $?
}
|