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:20:28 +03:00 committed by GitHub
parent aa48cf5b42
commit 1d46175e39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
modprobe wireguard
ip link add dev wg0 type wireguard
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; }
( echo "#"
echo "[Interface]"