選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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