diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-06-23 20:05:13 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-06-23 20:05:13 +1200 |
commit | 507989e6476732224836d9a948713ce283893563 (patch) | |
tree | 0955e384fb1f3c2ca5c89b1825c97a7f62aa1706 /wget/wgetrc | |
parent | Fix up an error message (diff) | |
download | dotfiles-507989e6476732224836d9a948713ce283893563.tar.gz dotfiles-507989e6476732224836d9a948713ce283893563.zip |
Add a simple wgetrc
Mostly use cURL admittedly, but these look sensible
Diffstat (limited to 'wget/wgetrc')
-rw-r--r-- | wget/wgetrc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/wget/wgetrc b/wget/wgetrc new file mode 100644 index 00000000..eb3f20ba --- /dev/null +++ b/wget/wgetrc @@ -0,0 +1,14 @@ +# No, no, dig UP, stupid +no_parent = on + +# Don't take no for an answer +retry_connrefused = on + +# It's the only thing that works against the machines +robots = off + +# Shorten default timeout +timeout = 60 + +# Reduce default number of attempts +tries = 3 |