blob: 9e8862813c01d6d8e977673ee9dbff489fe17490 (
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
30
31
32
33
34
35
36
37
38
|
#!/sbin/runscript
NAME=dkimproxy
depend() {
need net
after firewall
}
launch() {
ebegin "Starting ${DAEMON}"
start-stop-daemon --start --quiet \
--pidfile /var/run/${DAEMON}.pid \
--exec ${DAEMON} -- ${OPTS}
eend $?
}
terminate() {
ebegin "Stopping ${DAEMON}"
start-stop-daemon --stop --quiet \
--exec ${DAEMON} \
--pidfile /var/run/${DAEMON}.pid \
eend $?
}
start() {
DAEMON="${NAME}.in"
launch
DAEMON="${NAME}.out"
launch
}
stop() {
DAEMON="${NAME}.in"
terminate
DAEMON="${NAME}.out"
terminate
}
|