freebsd-dev/etc/rc.d/newsyslog
Doug Barton 91e7f8f09d syslogd should REQUIRE newsyslog, rather than newsyslog using
BEFORE: syslogd. This does not produce any change in the
ordering at the moment, but is cleaner style for the long term.
2005-12-21 09:54:15 +00:00

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"