The sed was missing the -i so brick-head setup scripts would hang because
we were not actually changing the file, just printing the output of
running the sed to the command line.
Signed-off-by: Andy Witter <awitter@georgialibraries.org>
if [ -e /etc/apache2/mods-enabled/ssl.conf ]
then
- sed '/SSL v2 is no longer supported/a \\tSSLProtocol all -SSLv3'
+ sed -i '/SSL v2 is no longer supported/a \\tSSLProtocol all -SSLv3'
else
echo "WARNING!!! Could not disable SSLv3 in apache2 conf"
echo "/etc/apache2/mods-enabled/ssl.conf is missing."