You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

updateConfigs.sh 259B

1234567891011
  1. #!/bin/bash
  2. set -e
  3. # Parent script for updating OpenVPN configs
  4. # If the script is called from elsewhere
  5. cd "${0%/*}"
  6. # Finds all provider specific update scripts and calls them
  7. find . -mindepth 2 -maxdepth 2 -name 'updateConfigs.sh' -exec /bin/bash {} \;