mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-27 14:15:09 +02:00
9 lines
142 B
Bash
Executable file
9 lines
142 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
for conf in /etc/wireguard/*.conf; do
|
|
[ -e "$conf" ] || continue;
|
|
wg-quick up "$conf"
|
|
done
|
|
|
|
exec chpst -b wireguard pause
|