8 lines
113 B
Plaintext
8 lines
113 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
for conf in /etc/wireguard/*.conf; do
|
||
|
[ -e "$conf" ] || continue;
|
||
|
wg-quick down "$conf"
|
||
|
done
|