adds init files
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Marvin Steadfast 2021-01-25 10:53:58 +01:00
parent ed4ec8c945
commit 367007267f
2 changed files with 49 additions and 0 deletions

View 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"
}

View 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