openrc/init.d/newsyslog.in

19 lines
327 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-04-27 13:21:18 +05:30
# Copyright 2007-2009 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"
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
}
start()
{
2007-12-05 22:01:23 +05:30
ebegin "Creating and/or trimming log files"
2009-04-27 13:21:18 +05:30
newsyslog -s $newsyslog_args
2007-12-05 22:01:23 +05:30
eend $?
}