Added apache mod_ssl check & installation to bootstrap

This commit is contained in:
Joona Hoikkala
2015-12-03 12:22:28 +02:00
parent 8168bfe70d
commit 5b4bf427b8
+8
View File
@@ -47,3 +47,11 @@ then
echo "Could not install additional dependencies. Aborting bootstrap!"
exit 1
fi
if yum list installed "httpd" >/dev/null 2>&1; then
if ! $tool install -y mod_ssl
then
echo "Apache found, but mod_ssl could not be installed."
fi
fi