Created
June 23, 2020 22:03
-
-
Save cleybertandre/efc5c06d0252b109fd46f6558ed51085 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @author Cleybert Andre | |
# | |
# cron.d/dns-fix -- Search for the fastest DNS resolver every 5 minutes. | |
# Available environment variables are documented on the script. | |
# | |
# ┌──────── minute (0 - 59 or "*/X" for every X minutes) | |
# │ ┌─────── hour (0 - 23) | |
# │ │ ┌────── day of month (1 - 31) | |
# │ │ │ ┌────── month (1 - 12) | |
# │ │ │ │ ┌───── day of week (0 - 6 => Sunday - Saturday, or 1 - 7 => Monday - Sunday) | |
# │ │ │ │ │ ┌───── run as this user | |
# │ │ │ │ │ │ ┌── command to run (use: >/dev/null 2>&1 to ignore errors) | |
# ↓ ↓ ↓ ↓ ↓ ↓ ↓ | |
*/5 * * * * root NS_1=8.8.8.8 NS_2=1.1.1.1 NS_3=208.67.222.222 -E /etc/rotinas/dns-healthy.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment