aboutsummaryrefslogtreecommitdiff
path: root/net/scribe/files/scribe.in
blob: 06704887b293311bc670f7691ec537a0f00b7411 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/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"