Files
extra/wireguard-tools/wg-quick.run
2025-06-22 20:39:04 -05:00

10 lines
148 B
Bash

#!/bin/sh
set -e
for conf in /etc/wireguard/*.conf; do
[ -e "$conf" ] || continue;
wg-quick up "$conf"
done
exec chpst -b wireguard pause