freebsd-skq/etc/rc.d/newsyslog
Yaroslav Tykhiy df19ed6a02 Use ${name} in pathnames where appropriate.
The sendmail script already was on this way,
but it didn't reach the end of it yet.
2005-10-28 16:55:38 +00:00

29 lines
465 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
# BEFORE: syslogd
. /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"