summaryrefslogtreecommitdiffstats
path: root/main/nsd/nsdc
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-11-04 10:15:17 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-11-04 13:00:30 +0000
commitef1b26f67837bc9402b673760238b2fda33acd4e (patch)
tree6f53cec4287ab485e953ab71d82c5d87790a00ce /main/nsd/nsdc
parent5e0dc63587df78566d95f57ff404639774e86dae (diff)
downloadaports-ef1b26f67837bc9402b673760238b2fda33acd4e.tar.bz2
aports-ef1b26f67837bc9402b673760238b2fda33acd4e.tar.xz
main/nsd: upgrade to 4.0.0
Diffstat (limited to 'main/nsd/nsdc')
-rw-r--r--main/nsd/nsdc30
1 files changed, 0 insertions, 30 deletions
diff --git a/main/nsd/nsdc b/main/nsd/nsdc
deleted file mode 100644
index ff4cb5c6b..000000000
--- a/main/nsd/nsdc
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-#
-# nsdc replacement script by Matt Smith <msmith@alpinelinux.org>
-#
-
-usage() {
- echo "Usage: `basename $0` {start|stop|reload|rebuild|restart|"
- echo " running|update|notify|patch}"
- echo "commands:"
- echo " start Start nsd server."
- echo " stop Stop nsd server."
- echo " reload Nsd server reloads database file."
- echo " rebuild Compile database file from zone files."
- echo " restart Stop the nsd server and start it again."
- echo " running Prints message and exit nonzero if server not running."
- echo " update Try to update all slave zones hosted on this server."
- echo " notify Send notify messages to all secondary servers."
- echo " patch Merge zone transfer changes back to zone files."
-}
-
-if [ $# -eq 0 ]; then
- usage
-else
- case "$1" in
- "-h"|"--help")
- usage;;
- *)
- /etc/init.d/nsd $*
- esac
-fi