WIP: openvpn

This commit is contained in:
Maurice
2025-09-23 20:55:46 +02:00
parent edf4b2c03f
commit c49ffa1769
14 changed files with 59 additions and 12 deletions

View File

@@ -9,6 +9,11 @@ for service in "./services"/*/; do
[ -d "$service" ] || continue
cd "$service" || continue
# Run install.sh if installing for the first time (if $1 is "install")
if [ "$1" = "install" ] && [ -f "install.sh" ]; then
source ./install.sh
fi
# Run update.sh if present
if [ -f "update.sh" ]; then
source ./update.sh