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.
29 lines
549 B
Bash
29 lines
549 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ser2net
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following lines to /etc/rc.conf to enable ser2net:
|
|
# ser2net_enable="YES"
|
|
# ser2net_flags="<set as needed>"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ser2net"
|
|
rcvar=ser2net_enable
|
|
command="%%PREFIX%%/sbin/ser2net"
|
|
|
|
load_rc_config $name
|
|
: ${ser2net_enable="NO"}
|
|
: ${ser2net_pidfile="/var/run/ser2net.pid"}
|
|
|
|
start_cmd="/usr/sbin/daemon -p ${ser2net_pidfile} $command $rc_flags $command_args"
|
|
stop_postcmd="rm -f /var/lock/subsys/ser2net"
|
|
|
|
run_rc_command "$1"
|