mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
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.
37 lines
840 B
Bash
37 lines
840 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: verlihub
|
|
# REQUIRE: DAEMON mysql
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# verlihub_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable verlihub.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="verlihub"
|
|
rcvar=verlihub_enable
|
|
|
|
command=%%PREFIX%%/bin/${name}
|
|
pidfile=/var/run/${name}.pid
|
|
|
|
logfile=/var/log/${name}.log
|
|
errfile=/var/log/${name}.err
|
|
command_args="> $logfile 2> $errfile &"
|
|
|
|
: ${verlihub_configdir="`%%PREFIX%%/bin/vh_getcfg`"}
|
|
required_dirs="$verlihub_configdir"
|
|
required_files="$verlihub_configdir/dbconfig $verlihub_configdir/motd $verlihub_configdir/help_usr $verlihub_configdir/faq $verlihub_configdir/rules"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${verlihub_enable="NO"}
|
|
|
|
start_postcmd="echo \$! > $pidfile"
|
|
stop_postcmd="rm $pidfile"
|
|
|
|
run_rc_command "$1"
|