diff --git a/configs/shells/bash/macros.sh b/configs/shells/bash/macros.sh index b3c4114..d0f0b63 100644 --- a/configs/shells/bash/macros.sh +++ b/configs/shells/bash/macros.sh @@ -163,15 +163,6 @@ wg-restart() { fi } -# Reload a wireguard link without stopping it -wg-reload() { - if [ $# != 1 ]; then - echo "Usage: wg-reload " - else - sudo bash -c "wg syncconf $1 <(wg-quick strip $1)" - fi -} - # Edit a wireguard config file wg-edit() { if [ $# != 1 ]; then diff --git a/scripts/wg-reload b/scripts/wg-reload new file mode 100644 index 0000000..6cf26b5 --- /dev/null +++ b/scripts/wg-reload @@ -0,0 +1,17 @@ +#! /bin/bash +set -e + +if [ $# != 1 ]; then + echo "Usage: wg-reload " + exit 1 +fi + +# Check if we have permission to run `wg` +if [ "$(id -u)" -ne 0 ]; then + # Re-launch this script as root + exec sudo "$0" "$@" + exit $? +fi + +# Reload the WireGuard interface +wg syncconf $1 <(wg-quick strip $1)