21 lines
373 B
Bash
21 lines
373 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: metalog
|
|
# REQUIRE: mountcritremote cleanvar newsyslog ldconfig
|
|
# BEFORE: SERVERS
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=metalog
|
|
rcvar=`set_rcvar`
|
|
pidfile="/var/run/metalog.pid"
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
command_args="--daemonize"
|
|
required_files="%%PREFIX%%/etc/metalog.conf"
|
|
|
|
load_rc_config $name
|
|
: ${metalog_enable:="NO"}
|
|
run_rc_command "$1"
|