blob: 5dc406600582386b586b3aa5bd963810996abf6f (
plain)
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
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: newsyslog
# REQUIRE: cleanvar mountcritremote
. /etc/rc.subr
name="newsyslog"
rcvar="newsyslog_enable"
required_files="/etc/newsyslog.conf"
command="/usr/sbin/${name}"
start_cmd="newsyslog_start"
stop_cmd=":"
newsyslog_start()
{
check_startmsgs && echo -n 'Creating and/or trimming log files'
${command} ${rc_flags}
check_startmsgs && echo '.'
}
load_rc_config $name
run_rc_command "$1"
|