mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
114a05da4a
- Makefile cleanup - NOPORTDOCS support, DOCSDIR in pkg-plist - fixed startup scripts and knobs PR: 109356 Submitted by: Martin Matuska <martin@matuska.org>
26 lines
376 B
Bash
26 lines
376 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: vtund
|
|
# REQUIRE: DAEMON
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable vtund:
|
|
#
|
|
# vtund_enable="YES"
|
|
#
|
|
|
|
vtund_enable=${vtund_enable:-"NO"}
|
|
vtund_flags=${vtund_flags:-"-s"}
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=vtund
|
|
rcvar=`set_rcvar`
|
|
required_files="%%PREFIX%%/etc/vtund.conf"
|
|
|
|
command=%%PREFIX%%/sbin/vtund
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|