83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
44 lines
871 B
Bash
44 lines
871 B
Bash
#!/bin/sh
|
|
# $FreeBSD
|
|
|
|
# PROVIDE: geomwatch
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Define these geomwatch_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/geomwatch
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
geomwatch_enable="${geomwatch_enable-NO}"
|
|
geomwatch_pidfile="/var/run/geomWatch.pid"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="geomwatch"
|
|
rcvar=geomwatch_enable
|
|
command="%%PREFIX%%/sbin/geomWatch"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${geomwatch_config="%%PREFIX%%/etc/geomWatch.conf"}
|
|
: ${geomwatch_flags="-c ${geomwatch_config}"}
|
|
|
|
pidfile="${geomwatch_pidfile}"
|
|
required_files="${geomwatch_config}"
|
|
|
|
case "${geomwatch_flags}" in
|
|
*-p\ *)
|
|
echo "ERROR: \$geomwatch_flags includes -p option." \
|
|
"Please use \$geomwatch_pidfile instead."
|
|
exit 1
|
|
;;
|
|
*)
|
|
geomwatch_flags="-p ${pidfile} ${geomwatch_flags}"
|
|
;;
|
|
esac
|
|
|
|
run_rc_command "$1"
|