91e7f8f09d
BEFORE: syslogd. This does not produce any change in the ordering at the moment, but is cleaner style for the long term.
28 lines
447 B
Bash
Executable File
28 lines
447 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: newsyslog,v 1.5 2002/03/24 15:51:26 lukem Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: newsyslog
|
|
# REQUIRE: cleanvar mountcritremote
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="newsyslog"
|
|
rcvar=`set_rcvar`
|
|
required_files="/etc/newsyslog.conf"
|
|
command="/usr/sbin/${name}"
|
|
start_cmd="newsyslog_start"
|
|
stop_cmd=":"
|
|
|
|
newsyslog_start()
|
|
{
|
|
echo -n "Creating and/or trimming log files:"
|
|
${command} ${rc_flags}
|
|
echo "."
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|