aboutsummaryrefslogtreecommitdiff
path: root/dns/mydns-ng/files/mydns.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dns/mydns-ng/files/mydns.sh')
-rw-r--r--dns/mydns-ng/files/mydns.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/dns/mydns-ng/files/mydns.sh b/dns/mydns-ng/files/mydns.sh
deleted file mode 100644
index 493a4356d676..000000000000
--- a/dns/mydns-ng/files/mydns.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-case "$1" in
- start)
- %%%PREFIX%%%/sbin/mydns -b
- ;;
- stop)
- kill `cat /var/run/mydns.pid`
- ;;
- *)
- echo ""
- echo "Usage: `basename $0` { start | stop }"
- echo ""
- exit 64
- ;;
-esac