summaryrefslogtreecommitdiff
path: root/net-mgmt/arpwatch/files/arpwatch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/arpwatch/files/arpwatch.sh')
-rw-r--r--net-mgmt/arpwatch/files/arpwatch.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/net-mgmt/arpwatch/files/arpwatch.sh b/net-mgmt/arpwatch/files/arpwatch.sh
deleted file mode 100644
index f0c8a797cb54..000000000000
--- a/net-mgmt/arpwatch/files/arpwatch.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-case $1 in
-start)
- if [ -x /usr/local/sbin/arpwatch -a -d /usr/local/arpwatch ]; then
- /usr/local/sbin/arpwatch && echo -n ' arpwatch'
- fi
- ;;
-stop)
- killall arpwatch && echo -n ' arpwatch'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0