buildvm03 support
This commit is contained in:
parent
7caaeca526
commit
bd6db3c6fa
19
cgi-bin/webbuild-buildvm03.cgi
Executable file
19
cgi-bin/webbuild-buildvm03.cgi
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
WEBBUILD_HOST=buildvm03
|
||||
if [ "$QUERY_STRING" ]; then
|
||||
# get (download, preserve content-type and content-disposition headers)
|
||||
contentdisposition=`curl -4 --connect-timeout 40 -sI "http://$WEBBUILD_HOST/cgi-bin/webbuild?$QUERY_STRING" -H "Content-Type: $CONTENT_TYPE" | grep Content-Disposition`
|
||||
echo "\
|
||||
$contentdisposition
|
||||
Content-Type: application/octet-stream
|
||||
"
|
||||
stdbuf -o0 curl -4 --connect-timeout 40 "http://$WEBBUILD_HOST/cgi-bin/webbuild?$QUERY_STRING" -H "Content-Type: $CONTENT_TYPE"
|
||||
else
|
||||
echo "\
|
||||
Content-Type: text/xml
|
||||
Pragma: no-cache
|
||||
|
||||
"
|
||||
|
||||
stdbuf -o0 curl -4 --connect-timeout 40 "http://$WEBBUILD_HOST/cgi-bin/webbuild" -H "Content-Type: $CONTENT_TYPE" --data-binary @- --stderr /dev/null
|
||||
fi
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
WEBBUILD_HOST=mambanana
|
||||
WEBBUILD_HOST=buildvm03
|
||||
if [ "$QUERY_STRING" ]; then
|
||||
# get (download, preserve content-type and content-disposition headers)
|
||||
contentdisposition=`curl -4 --connect-timeout 40 -sI "http://$WEBBUILD_HOST/cgi-bin/webbuild?$QUERY_STRING" -H "Content-Type: $CONTENT_TYPE" | grep Content-Disposition`
|
||||
|
Loading…
Reference in New Issue
Block a user