diff options
Diffstat (limited to 'testing/gdnsd/gdnsd.initd')
-rwxr-xr-x | testing/gdnsd/gdnsd.initd | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/testing/gdnsd/gdnsd.initd b/testing/gdnsd/gdnsd.initd deleted file mode 100755 index e11a73d1d6..0000000000 --- a/testing/gdnsd/gdnsd.initd +++ /dev/null @@ -1,18 +0,0 @@ -#!/sbin/runscript - -depend() { - need net - after firewall -} - -start() { - ebegin "Starting dnsd" - start-stop-daemon --start --exec /usr/sbin/dnsd -- -d $DNSD_OPTS - eend $? -} - -stop () { - ebegin "Stopping dnsd" - start-stop-daemon --stop --exec /usr/sbin/dnsd - eend $? -} |