blob: 18397b42475f312aa4179a6065da08f1938fe1c0 (
plain) (
tree)
|
|
#!/bin/sh
set -x -e
sleep 3
sh /etc/netstart iwn0
wg_interfaces=$(find /etc/wireguard -type f | sed 's/\.conf$//g')
for wg_interface in ${wg_interfaces}; do
wg_interface=$(basename "${wg_interface}")
wg-quick down "${wg_interface}"
wg-quick up "${wg_interface}"
done
rcctl -d restart pcscd
|