Create portage overlay tree.
[icmp-dn.git] / admin / portage / net-misc / icmpdn / files / icmpdnd.init
CommitLineData
32533549
DC
1#!/sbin/runscript
2
3opts="start stop restart"
4
5depend() {
6 need net
7}
8
9start() {
10 ebegin "Starting icmpdnd"
11 start-stop-daemon --start --quiet --exec /usr/sbin/icmpdnd
12 eend $?
13}
14
15stop() {
16 ebegin "Stopping icmpdnd"
17 start-stop-daemon --stop --quiet --exec /usr/sbin/icmpdnd
18 eend $?
19}