Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
997fcff7
Commit
997fcff7
authored
Jul 10, 2024
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget: use timeout 20s for response checking, only one try by default
parent
d084d69d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tools_eget
bin/tools_eget
+4
-4
No files found.
bin/tools_eget
View file @
997fcff7
...
...
@@ -329,7 +329,7 @@ CURLMAXTIME=''
WGETREADTIMEOUT
=
''
WGETRETRYCONNREFUSED
=
''
CURLRETRYCONNREFUSED
=
''
WGETTRIES
=
''
WGETTRIES
=
'
--tries 1
'
CURLRETRY
=
''
WGETLOADCOOKIES
=
''
CURLCOOKIE
=
''
...
...
@@ -1067,7 +1067,7 @@ url_get_response()
{
local
URL
=
"
$1
"
local
answer
answer
=
"
$(
quiet
=
1 __wget
--spider
-S
"
$URL
"
2>&1
)
"
answer
=
"
$(
quiet
=
1 __wget
--
timeout
20
--tries
1
--
spider
-S
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
# HTTP/1.1 404 Not Found
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 40[45]"
;
then
...
...
@@ -1114,11 +1114,11 @@ url_get_response()
{
local
URL
=
"
$1
"
local
answer
answer
=
"
$(
quiet
=
1 __curl
-LI
"
$URL
"
2>&1
)
"
answer
=
"
$(
quiet
=
1 __curl
-
-max-time
20
--retry
0
-
LI
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
# HTTP/1.1 404 Not Found
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 40[45]"
;
then
(
quiet
=
1 __curl
-L
-i
-r0-0
"
$URL
"
2>&1
)
(
quiet
=
1 __curl
-
-max-time
20
--retry
0
-
L
-i
-r0-0
"
$URL
"
2>&1
)
return
fi
echo
"
$answer
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment