diff options
Diffstat (limited to 'net/ipcad/files/ipcad.sh.tmpl')
-rw-r--r-- | net/ipcad/files/ipcad.sh.tmpl | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/net/ipcad/files/ipcad.sh.tmpl b/net/ipcad/files/ipcad.sh.tmpl deleted file mode 100644 index 6fda2ff21dce..000000000000 --- a/net/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 |