2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-12-05 22:01:23 +05:30
|
|
|
|
|
|
|
required_files="/etc/newsyslog.conf"
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2007-12-05 22:01:23 +05:30
|
|
|
need localmount
|
2008-03-03 18:48:35 +05:30
|
|
|
keyword noprefix
|
2007-12-05 22:01:23 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-12-05 22:01:23 +05:30
|
|
|
ebegin "Creating and/or trimming log files"
|
2008-01-15 06:19:53 +05:30
|
|
|
newsyslog -s ${newsyslog_args}
|
2007-12-05 22:01:23 +05:30
|
|
|
eend $?
|
|
|
|
}
|