blob: c33947e190384976437889271e852bb940525c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: vtund
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable vtund:
#
# vtund_enable="YES"
#
vtund_enable=${vtund_enable:-"NO"}
vtund_flags=${vtund_flags:-"-s"}
. /etc/rc.subr
name=vtund
rcvar=vtund_enable
required_files="%%PREFIX%%/etc/vtund.conf"
pidfile=/var/run/vtund.pid
command=%%PREFIX%%/sbin/vtund
load_rc_config $name
run_rc_command "$1"
|