#!/usr/bin/with-contenv bash
# shellcheck shell=bash

if [[ ${USE_WIREGUARD,,} == "false" ]]; then
    exit 0
else
    wg-quick down wg0
fi
