1
ewconfig/scripts/wg-restart
2024-05-08 15:18:57 -04:00

13 lines
210 B
Bash
Executable File

#! /bin/bash
# Fully restarts a wireguard link
set -e
# Check args
if [ $# != 1 ]; then
echo "Usage: wg-restart <interface>"
fi
# Its ok if the down command fails
wg-quick down $1 || true;
wg-quick up $1