2013-12-21 14:51:11 -06:00
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-04 16:52:19 -06:00
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-20 15:11:18 +00:00
|
|
|
|
|
|
|
command=/usr/sbin/syslogd
|
2009-04-27 07:51:18 +00:00
|
|
|
command_args=$syslogd_args
|
|
|
|
case "$RC_UNAME" in
|
2008-01-11 23:49:40 +00:00
|
|
|
FreeBSD|DragonFly) pidfile=/var/run/syslog.pid;;
|
|
|
|
*) pidfile=/var/run/syslogd.pid;;
|
|
|
|
esac
|
2007-11-20 15:32:32 +00:00
|
|
|
name="System Logger Daemon"
|
2007-11-20 15:11:18 +00:00
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
depend()
|
|
|
|
{
|
2007-11-20 15:11:18 +00:00
|
|
|
provide logger
|
2008-01-15 00:49:53 +00:00
|
|
|
use net newsyslog
|
2007-11-20 15:11:18 +00:00
|
|
|
need localmount
|
2017-03-16 10:16:39 -05:00
|
|
|
after bootmisc clock
|
2012-07-02 22:04:22 -05:00
|
|
|
keyword -prefix
|
2007-11-20 15:11:18 +00:00
|
|
|
}
|