diff options
Diffstat (limited to 'bin/update-glsa.sh')
-rwxr-xr-x | bin/update-glsa.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update-glsa.sh b/bin/update-glsa.sh index 6a64069..81d4f65 100755 --- a/bin/update-glsa.sh +++ b/bin/update-glsa.sh @@ -1,6 +1,6 @@ #!/bin/bash echo -n 'Updating GLSA information...' -wget 'https://security.gentoo.org/glsa/feed.yaml' -O _data/glsa.yaml.tmp 2>/dev/null +wget -T 60 'https://security.gentoo.org/glsa/feed.yaml' -O _data/glsa.yaml.tmp 2>/dev/null [ $? -eq 0 ] && mv _data/glsa.yaml.tmp _data/glsa.yaml echo 'done.' |