1234567891011121314151617 |
- #!/usr/bin/env bash
- # How many vpn configs should be available to connect to.
- ovpn_count=5
- # After how many hours should the VPN data be considered stale.
- # VPN Gate servers get added or removed all the time. When old ones get removed
- # it gives you poor performance if they're in use. To remedy this, newer VPN
- # connection data should be downloaded and used instead. This sets the time in
- # hours when the last downloaded data should be considered old and a latest
- # version should be suggested to be downloaded and used. Currently this is done
- # when ./fetch.sh is run.
- stale_threshold_hours=6
- # If set to true, update stale files without asking.
- auto_update_when_stale=true
|