#!/bin/sh

# PROVIDE: rtgpoll
# REQUIRE: LOGIN mysql
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# rtgpoll_enable (bool):   Set to NO by default.
#                          Set it to YES to enable rtgpoll.
# rtgpoll_config (path):   Set to /usr/local/etc/rtg/rtg.conf by default.
# rtgpoll_targets (path):  Set to /usr/local/etc/rtg/targets.cfg by default.
# rtgpoll_pidfile (path):  Set to /var/run/rtgpoll.pid by default.
#

. /etc/rc.subr

name="rtgpoll"
rcvar=rtgpoll_enable

start_precmd="${name}_prestart"
command="/usr/local/bin/${name}"

load_rc_config ${name}

: ${rtgpoll_enable="NO"}
: ${rtgpoll_config="/usr/local/etc/rtg/rtg.conf"}
: ${rtgpoll_targets="/usr/local/etc/rtg/targets.cfg"}
: ${rtgpoll_pidfile="/var/run/${name}.pid"}
: ${rtgpoll_user="rtg"}
: ${rtgpoll_group="rtg"}

required_files="${rtgpoll_targets}"
command_args="-b -p ${rtgpoll_pidfile} -c ${rtgpoll_config} -t ${rtgpoll_targets}"

rtgpoll_prestart()
{
  chown -R "${rtgpoll_user}:${rtgpoll_group}" "/usr/local/etc/rtg"
  chmod -R u+rwX,g+rX "/usr/local/etc/rtg"
}

run_rc_command "$1"

