summaryrefslogtreecommitdiff
path: root/net/scribe/files/scribe.in
diff options
context:
space:
mode:
Diffstat (limited to 'net/scribe/files/scribe.in')
-rw-r--r--net/scribe/files/scribe.in34
1 files changed, 0 insertions, 34 deletions
diff --git a/net/scribe/files/scribe.in b/net/scribe/files/scribe.in
deleted file mode 100644
index 06704887b293..000000000000
--- a/net/scribe/files/scribe.in
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# PROVIDE: scribe
-# REQUIRE: DAEMON
-# KEYWORD: shutdown
-
-. /etc/rc.subr
-
-name="scribe"
-rcvar=scribe_enable
-pidfile="/var/run/${name}.pid"
-command="%%PREFIX%%/bin/scribed"
-
-start_cmd=scribe_start
-stop_postcmd=scribe_cleanup
-
-scribe_start()
-{
- echo "Starting ${name}."
- /usr/sbin/daemon -cf -p ${pidfile} ${command} ${scribe_flags} 2>>/var/log/scribe.log
-}
-
-scribe_cleanup() {
- [ -f ${pidfile} ] && /bin/unlink ${pidfile}
-}
-
-load_rc_config "$name"
-
-: ${scribe_enable="NO"}
-
-run_rc_command "$1"