blob: 341143b8a2f32024c0317a464b0ef449ccf37fd4 (
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
35
36
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: syslogd
# REQUIRE: mountcritremote cleanvar
# BEFORE: SERVERS
#
# Add the following line to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
#syslog_ng_enable="YES"
#
. %%RC_SUBR%%
name=syslog_ng
rcvar=`set_rcvar`
command=%%PREFIX%%/sbin/syslog-ng
required_files=%%PREFIX%%/etc/syslog-ng/syslog-ng.conf
pidfile=/var/run/syslog.pid
extra_commands=reload
stop_postcmd=stop_postcmd
load_rc_config $name
: ${syslog_ng_enable:="NO"}
stop_postcmd() {
rm -f $pidfile
}
run_rc_command "$1"
|