aboutsummaryrefslogtreecommitdiff
path: root/dns/noip/files/noip.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dns/noip/files/noip.sh')
-rw-r--r--dns/noip/files/noip.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/dns/noip/files/noip.sh b/dns/noip/files/noip.sh
deleted file mode 100644
index eca1af8323b8..000000000000
--- a/dns/noip/files/noip.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-case "$1" in
- start)
- if [ -x %%PREFIX%%/bin/noip -a -f %%PREFIX%%/etc/no-ip.conf ]; then
- echo -n ' noip';
- su -m noip -c '%%PREFIX%%/bin/noip' 2> /dev/null > /dev/null
- fi
- ;;
- stop)
- echo -n ' noip';
- killall noip
- ;;
- *)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 1
- ;;
-esac
-exit 0