Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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 {} \;