summaryrefslogtreecommitdiff
path: root/net/openslp/files/slpd.in
diff options
context:
space:
mode:
Diffstat (limited to 'net/openslp/files/slpd.in')
-rw-r--r--net/openslp/files/slpd.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/net/openslp/files/slpd.in b/net/openslp/files/slpd.in
deleted file mode 100644
index eb0cb1dc2b34..000000000000
--- a/net/openslp/files/slpd.in
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# OpenSLP daemon.
-#
-if ! test -x %%PREFIX%%/sbin/slpd
-then
-# exit 0
-fi
-case $1 in
-start)
- echo -n ' slpd'
- %%PREFIX%%/sbin/slpd
- ;;
-stop)
- killall slpd
- ;;
-*)
- echo "Usage: $0: [ start | stop ]" 2>&1
- exit 65
- ;;
-esac