1

Attempt to fix wg-reload issue

This commit is contained in:
Evan Pratten 2024-04-22 09:52:04 -04:00
parent 3195fa7f1a
commit cc6a426076

View File

@ -167,7 +167,7 @@ wg-reload() {
if [ $# != 1 ]; then
echo "Usage: wg-reload <interface>"
else
sudo wg syncconf $1 <(sudo wg-quick strip $1)
sudo bash -c "wg syncconf $1 <(wg-quick strip $1)"
fi
}