2008-03-02 21:14:01 +00:00
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 15:11:40 +01:00
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-29 19:46:31 -04:00
|
|
|
# Released under the 2-clause BSD license.
|
2007-12-05 16:31:23 +00:00
|
|
|
|
|
|
|
required_files="/etc/newsyslog.conf"
|
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
depend()
|
|
|
|
{
|
2007-12-05 16:31:23 +00:00
|
|
|
need localmount
|
2009-07-01 00:07:32 +01:00
|
|
|
keyword -prefix
|
2007-12-05 16:31:23 +00:00
|
|
|
}
|
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
start()
|
|
|
|
{
|
2007-12-05 16:31:23 +00:00
|
|
|
ebegin "Creating and/or trimming log files"
|
2009-04-27 07:51:18 +00:00
|
|
|
newsyslog -s $newsyslog_args
|
2007-12-05 16:31:23 +00:00
|
|
|
eend $?
|
|
|
|
}
|