From 7ea752bf045c6256d396af7bccebb1a5a899f2a3 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 19 Jul 2019 13:47:27 +0200 Subject: al32-mktorrent.sh: add timeout to curl --- al32-mktorrent.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'al32-mktorrent.sh') diff --git a/al32-mktorrent.sh b/al32-mktorrent.sh index 3049514..3e577c4 100644 --- a/al32-mktorrent.sh +++ b/al32-mktorrent.sh @@ -53,7 +53,7 @@ function create_torrent_for_arch () { for i in $mirrorlist ; do echo -n -e "$fg_reset${fg_bold}Checking $fg_reset$fg_blue$i$fg_reset " - curl -g "$i" 2>/dev/null | grep -q "$iso_string" && ( + curl --connect-timeout 10 -g "$i" 2>/dev/null | grep -q "$iso_string" && ( echo -e "$fg_reset${fg_green}OK$fg_reset" ) || ( echo -e "$fg_reset${fg_red}Failed$fg_reset" ; false ) || continue available_mirrors=(${available_mirrors[@]} "$i") -- cgit v1.2.3