aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/ipcad/files/ipcad.sh.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/ipcad/files/ipcad.sh.tmpl')
-rw-r--r--net-mgmt/ipcad/files/ipcad.sh.tmpl19
1 files changed, 0 insertions, 19 deletions
diff --git a/net-mgmt/ipcad/files/ipcad.sh.tmpl b/net-mgmt/ipcad/files/ipcad.sh.tmpl
deleted file mode 100644
index 6fda2ff21dce..000000000000
--- a/net-mgmt/ipcad/files/ipcad.sh.tmpl
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-# ipcad startup script example.
-
-case "$1" in
-start)
- if [ -x !!PREFIX!!/bin/ipcad -a -f !!PREFIX!!/etc/ipcad.conf ]; then
- !!PREFIX!!/bin/ipcad -rds && echo -n ' ipcad'
- fi
- ;;
-stop)
- /usr/bin/killall ipcad && /bin/echo -n ' ipcad'
- ;;
-*)
- /bin/echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0