Update general/overlay/usr/sbin/wireguard

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
pull/1882/head
Signor Pellegrino 2025-09-14 00:22:05 +03:00 committed by GitHub
parent 1d46175e39
commit 0860a2833a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -3,9 +3,10 @@
modprobe wireguard || { echo "Error: Failed to load wireguard module." >&2; exit 1; } modprobe wireguard || { echo "Error: Failed to load wireguard module." >&2; exit 1; }
ip link add dev wg0 type wireguard || { echo "Error: Failed to create wg0 interface." >&2; exit 1; } ip link add dev wg0 type wireguard || { echo "Error: Failed to create wg0 interface." >&2; exit 1; }
WG_PRIVKEY="$(fw_printenv -n wg_privkey)"
( echo "#" ( echo "#"
echo "[Interface]" echo "[Interface]"
echo "PrivateKey = $(fw_printenv -n wg_privkey)" echo "PrivateKey = $WG_PRIVKEY"
# echo "Address = $(fw_printenv -n wg_address)" # echo "Address = $(fw_printenv -n wg_address)"
# echo "DNS = $(fw_printenv -n wg_dns)" # echo "DNS = $(fw_printenv -n wg_dns)"
echo echo