icingaweb2: Disable mod_lua in testing

This commit is contained in:
Markus Frosch 2017-06-07 14:13:25 +02:00
parent b984237e8e
commit 910e596397
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ elif [ -x /usr/share/apache2/get_module_list ]; then
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 /etc/httpd/conf.modules.d/00-lua.conf && mv /etc/httpd/conf.modules.d/00-lua.conf{,.off} || true
sudo sh -ex <<<"test -e /etc/httpd/conf.modules.d/00-lua.conf && mv /etc/httpd/conf.modules.d/00-lua.conf{,.off} || true"
sudo httpd -t
sudo httpd -k start
else