mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +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.
38 lines
718 B
Bash
38 lines
718 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: umurmur
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# umurmur_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable umurmur.
|
|
# umurmur_user (str): Set to "umurmur" by default.
|
|
# Set to change user account.
|
|
# umurmur_flags (str): Set to "" by default.
|
|
# Extra flags passed to start command.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=umurmur
|
|
rcvar=umurmur_enable
|
|
|
|
# pidfile
|
|
pidfile="/var/run/umurmur/umurmur.pid"
|
|
|
|
command="%%PREFIX%%/bin/umurmurd"
|
|
command_args="-p ${pidfile}"
|
|
|
|
load_rc_config $name
|
|
|
|
# Set some defaults
|
|
: ${umurmur_enable="NO"}
|
|
: ${umurmur_user="umurmur"}
|
|
|
|
run_rc_command "$1"
|