This commit is contained in:
parent
ed4ec8c945
commit
367007267f
33
init/openrc/wg-quicker.init
Normal file
33
init/openrc/wg-quicker.init
Normal file
@ -0,0 +1,33 @@
|
||||
#!/sbin/openrc-run
|
||||
|
||||
name="WireGuard"
|
||||
description="WireGuard via wg-quicker"
|
||||
|
||||
depend() {
|
||||
need net
|
||||
use dns
|
||||
}
|
||||
|
||||
CONF="${SVCNAME#*.}"
|
||||
|
||||
checkconfig() {
|
||||
if [ "$CONF" = "$SVCNAME" ]; then
|
||||
eerror "You cannot call this init script directly. You must create a symbolic link to it with the configuration name:"
|
||||
eerror " ln -s /etc/init.d/wg-quicker /etc/init.d/wg-quicker.vpn0"
|
||||
eerror "And then call it instead:"
|
||||
eerror " /etc/init.d/wg-quicker.vpn0 start"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting $description for $CONF"
|
||||
wg-quicker up "$CONF"
|
||||
eend $? "Failed to start $description for $CONF"
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping $description for $CONF"
|
||||
wg-quicker down "$CONF"
|
||||
eend $? "Failed to stop $description for $CONF"
|
||||
}
|
16
init/systemd/wg-quicker@.service
Normal file
16
init/systemd/wg-quicker@.service
Normal file
@ -0,0 +1,16 @@
|
||||
[Unit]
|
||||
Description=WireGuard via wg-quicker for %I
|
||||
After=network-online.target nss-lookup.target
|
||||
Wants=network-online.target nss-lookup.target
|
||||
PartOf=wg-quick.target
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
RemainAfterExit=yes
|
||||
ExecStart=/usr/local/bin/wg-quicker up %i
|
||||
ExecStop=/usr/local/bin/wg-quicker down %i
|
||||
ExecReload=/usr/bin/local/wg-quicker sync %i
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
Loading…
Reference in New Issue
Block a user