Netbird is similar vpn service as tailscale and zerotier. Description: NetBird is an open-source VPN management platform built on top of WireGuard® making it easy to create secure private networks for your organization or home. It requires zero configuration effort leaving behind the hassle of opening ports, complex firewall rules, VPN gateways, and so forth. Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
14 lines
248 B
Bash
Executable file
14 lines
248 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
STOP=10
|
|
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
procd_open_instance
|
|
procd_set_param command /usr/bin/netbird
|
|
procd_append_param command service run
|
|
procd_set_param pidfile /var/run/netbird.pid
|
|
procd_close_instance
|
|
}
|