summaryrefslogtreecommitdiff
path: root/init.d.BSD/newsyslog
blob: a03d3798605849e91cc53c985d73a75ea8ae2ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/runscript
# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.

required_files="/etc/newsyslog.conf"

depend()
{
	need localmount
}

start()
{
	ebegin "Creating and/or trimming log files"
	newsyslog ${newsyslog_args}
	eend $?
}