From e210f1e1fec6eae731af675f696550fa3dddb48c Mon Sep 17 00:00:00 2001 From: Markus Frosch Date: Wed, 7 Jun 2017 13:52:48 +0200 Subject: [PATCH] icingaweb2: Disable mod_lua in testing Can crash on Fedora 25 with Apache 2.4 --- testing/start_test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing/start_test.sh b/testing/start_test.sh index 520fcd5..55c2d3d 100755 --- a/testing/start_test.sh +++ b/testing/start_test.sh @@ -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