1
0
Fork 0
mirror of synced 2024-05-26 20:11:14 -04:00
ovpn-admin/stop.sh
2024-01-01 21:52:35 +04:00

19 lines
276 B
Bash
Executable file

#!/usr/bin/env bash
if [ ! -f .env ]; then
echo "Please create a .env file"
exit 1
fi
set -a
source .env
set +a
docker compose -p "$OVPN_COMPOSE_NAME" down "$@"
for script_file in ./start.d/*.sh
do
echo "Sourcing ${script_file}"
source "${script_file}"
done