summaryrefslogtreecommitdiff
path: root/security/drweb/files/drwebd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'security/drweb/files/drwebd.sh')
-rw-r--r--security/drweb/files/drwebd.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/security/drweb/files/drwebd.sh b/security/drweb/files/drwebd.sh
deleted file mode 100644
index bfffe8b64255..000000000000
--- a/security/drweb/files/drwebd.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-
-drwebd='!!PREFIX!!/drwebd'
-
-case "$1" in
-start)
- if [ -x $drwebd ]; then
- echo -n ' drwebd'
- $drwebd
- /bin/chmod 660 /var/run/drwebd.sock
- fi
- ;;
-stop)
- /usr/bin/killall drwebd
- /bin/rm -f /var/run/drwebd.sock
- echo -n ' drwebd'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0