#!/bin/sh -e

for conf in /etc/wireguard/*.conf; do
    [ -e "$conf" ] || continue
    wg-quick down "$conf"
done
