piframe/piframefleet/root/etc/services.d/wireguard/run

21 lines
274 B
Plaintext
Raw Normal View History

2020-08-02 20:15:13 +00:00
#!/usr/bin/with-contenv bash
# Adapted from https://github.com/linuxserver/docker-wireguard
if [ "$ENABLE_WIREGUARD" = false ] ; then
exit
fi
_term() {
echo "Caught SIGTERM signal!"
wg-quick down wg0
}
trap _term SIGTERM
wg-quick up wg0
sleep infinity &
wait