mirror of
https://github.com/haugene/docker-transmission-openvpn.git
synced 2025-08-11 16:57:12 +02:00
11 lines
259 B
Bash
Executable File
11 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Parent script for updating OpenVPN configs
|
|
|
|
# If the script is called from elsewhere
|
|
cd "${0%/*}"
|
|
|
|
# Finds all provider specific update scripts and calls them
|
|
find . -mindepth 2 -maxdepth 2 -name 'updateConfigs.sh' -exec /bin/bash {} \; |