Finished the implementation of the "Connect through Web server feature".

This commit is contained in:
Juan Carlos Luciani
2007-06-25 16:39:33 +00:00
parent 5fb592cf16
commit 7fe7751090
12 changed files with 262 additions and 272 deletions

View File

@@ -39,14 +39,14 @@ if [ -f $APACHE_SYSCONFIG_FILE_PATH ]; then
TEST_PROXY_AJP=$(grep -i proxy_ajp $APACHE_SYSCONFIG_FILE_PATH | cut -c1-14 | grep -i APACHE_MODULES)
if [ -z "${TEST_PROXY_AJP}" ]; then
echo "mod_proxy_ajp not configured to be loaded"
retVal=1
retVal=0
else
echo "mod_proxy_ajp configured to be loaded"
retVal=0
retVal=1
fi
else
echo "Apache not installed"
retVal=1
retVal=0
fi
exit $retVal