index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2024-10-17 07:57:53 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2024-10-17 07:57:53 +0200 |
commit | 3f5a59b26121cdc9b501771a4b7be01f831fcdd8 (patch) | |
tree | a7702d888c3e7206c6a3bac19aaf73fa7c87641a /bin | |
parent | 671cf5545a438bdf94525c6c5cd660ee4ee6680f (diff) |
-rwxr-xr-x | bin/check-mirrors | 6 |
diff --git a/bin/check-mirrors b/bin/check-mirrors index d0b626c..26fa757 100755 --- a/bin/check-mirrors +++ b/bin/check-mirrors @@ -121,7 +121,7 @@ elif [ $# -eq 1 ]; then success=1 has_ipv4=1 if last_sync=$( - curl -4 -s "${url}lastsync" + curl -k -4 -s "${url}lastsync" ); then if printf '%s' "${last_sync}" | \ tr '\n' 'X' | \ @@ -133,7 +133,7 @@ elif [ $# -eq 1 ]; then fi has_ipv6=1 if cnt=$( - curl -6 -s "${url}lastsync" + curl -k -6 -s "${url}lastsync" ); then if printf '%s' "${cnt}" | \ tr '\n' 'X' | \ @@ -155,7 +155,7 @@ elif [ $# -eq 1 ]; then if [ ${success} -eq 1 ]; then has_isos=1 cnt=$( - curl -s "${ip_flag}" "${url}archisos/" + curl -k -s "${ip_flag}" "${url}archisos/" ) || has_isos=0 # doesn't really work: dual doesn't exist anymore and the other test sometimes fails, sometimes succeeds? # let's assume the precense of the 'archisos' directory is enough |