diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-02 14:05:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-02 14:05:44 +0000 |
commit | 5f2f70b8b9f345e3bd96da11b8d5c8bf3e7f1d91 (patch) | |
tree | 60a53171f6ad5234d6908d6dec9f30392413ed57 /testing/gdnsd/gdnsd.initd | |
parent | 09b3339a721ca4de965b765421411a919d103d67 (diff) | |
download | aports-5f2f70b8b9f345e3bd96da11b8d5c8bf3e7f1d91.tar.bz2 aports-5f2f70b8b9f345e3bd96da11b8d5c8bf3e7f1d91.tar.xz |
main/gdnsd: moved from testing
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 $? -} |