blob: 87b66e7b3eef2a5ebe99c9fa4bd348f6ec0d4e4a (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: zerotier
# REQUIRE: FILESYSTEMS devfs
# BEFORE: pf ipfw
# KEYWORD: shutdown
#
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# zerotier_enable (bool): Set to NO by default.
# Set it to YES to enable zerotier.
. /etc/rc.subr
name=zerotier
rcvar=zerotier_enable
load_rc_config $name
: ${zerotier_enable:="NO"}
required_modules="if_tap"
pidfile="/var/run/${name}.pid"
start_precmd="install -o root /dev/null ${pidfile}"
command="/usr/sbin/daemon"
command_args=" \
-c \
-t ${name} \
-r \
-P ${pidfile} \
%%ZEROTIER_SYSLOG%% \
/usr/local/sbin/${name}-one"
run_rc_command "$1"
|