icingaweb2: Disable mod_lua in testing

Can crash on Fedora 25 with Apache 2.4
This commit is contained in:
Markus Frosch 2017-06-07 13:52:48 +02:00
parent ee9f5723db
commit e210f1e1fe

View File

@ -33,6 +33,9 @@ elif [ -x /usr/share/apache2/get_module_list ]; then
sudo /usr/sbin/apache2ctl -k start
elif [ -x /usr/sbin/httpd ]; then
# Disable mod_lua - it sometimes crashes on Fedora 25 with:
# mod_lua: Failed to create shared memory segment on file /tmp/httpd_lua_shm.187
test -e conf.modules.d/00-lua.conf && mv conf.modules.d/00-lua.conf{,.off} || true
sudo httpd -t
sudo httpd -k start
else