summaryrefslogtreecommitdiff
path: root/net/netams/files/netams.sh
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>2004-02-23 04:42:13 +0000
committerGarrett Wollman <wollman@FreeBSD.org>2004-02-23 04:42:13 +0000
commit60aab665670e50cb18bba45ee25f2ed091759741 (patch)
tree924c1af9c149083e0626ceb279b67ad6ca69e630 /net/netams/files/netams.sh
parentBROKEN on !i386: Does not compile (diff)
Say hello to the new "net-mgmt" category. There are probably more
ports that belong here than the ones I have identified and moved in this, first, pass. Approved in principle by: marcus
Diffstat (limited to 'net/netams/files/netams.sh')
-rw-r--r--net/netams/files/netams.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/net/netams/files/netams.sh b/net/netams/files/netams.sh
deleted file mode 100644
index 1df303d575ff..000000000000
--- a/net/netams/files/netams.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-
-start)
- sleep 3;
- /bin/mkdir -p /var/run/netams
- if [ -x /usr/local/libexec/netams ]; then
- if [ -f /usr/local/etc/netams.conf ]; then
- /usr/local/libexec/netams -lf /usr/local/etc/netams.conf >/dev/null && echo -n ' NetAMS'
- fi
- fi
- ;;
-
-stop)
- killall netams
- rmdir /var/run/netams
- ;;
-*)
- echo "$0 start | stop"
- ;;
-
-esac
-
-
-