mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +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.
34 lines
686 B
Bash
34 lines
686 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: rsmbd
|
|
# REQUIRE: NETWORKING
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# rsmbd_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable rsmbd.
|
|
# rsmbd_config (path): Unset by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="rsmbd"
|
|
rcvar=rsmbd_enable
|
|
eval "${name}_installdir=\${${name}_installdir:-'%%PREFIX%%/libexec/rsmb'}"
|
|
eval "command=\${${name}_installdir}/broker"
|
|
|
|
start_cmd="${name}_start"
|
|
|
|
load_rc_config $name
|
|
|
|
eval "${rcvar}=\${${rcvar}:-'NO'}"
|
|
|
|
rsmbd_start() {
|
|
echo "Starting ${name}."
|
|
cd %%PREFIX%%/libexec/rsmb && %%PREFIX%%/libexec/rsmb/broker ${rsmbd_config} > /dev/null 2>&1 &
|
|
}
|
|
|
|
run_rc_command "$1"
|
|
|