summaryrefslogtreecommitdiff
path: root/init.d/syslogd.in
blob: 2f6c040ea574347501b5e8579858b2c12e332c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!@SBINDIR@/openrc-run
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.

command=/usr/sbin/syslogd
command_args=$syslogd_args
case "$RC_UNAME" in
	FreeBSD|DragonFly)	pidfile=/var/run/syslog.pid;;
	*)			pidfile=/var/run/syslogd.pid;;
esac
name="System Logger Daemon"

depend()
{
	provide logger
	use net newsyslog
	need mount.usr mount.var
	after bootmisc
	keyword -prefix
}