wordpress-theme-openmamba/cgi-bin/webbuild-buildvm01.cgi

20 lines
744 B
Bash
Executable File

#!/bin/bash
WEBBUILD_HOST=buildvm01.openmamba.org
if [ "$QUERY_STRING" ]; then
# get (download, preserve content-type and content-disposition headrs)
contentdisposition=`curl -4 --connect-timeout 20 -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 -oL curl -4 --connect-timeout 20 "http://$WEBBUILD_HOST/cgi-bin/webbuild?$QUERY_STRING" -H "Content-Type: $CONTENT_TYPE"
else
echo "\
Content-Type: text/xml
Pragma: no-cache
"
stdbuf -oL curl -4 --connect-timeout 20 "http://$WEBBUILD_HOST/cgi-bin/webbuild" -H "Content-Type: $CONTENT_TYPE" --data-binary @- --stderr /dev/null
fi