From 66f8e383177600cf15c3fbbae12ea8190741c5e4 Mon Sep 17 00:00:00 2001 From: Sebastian Kisela Date: Tue, 17 Jul 2018 14:02:11 +0000 Subject: [PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path On Fedora-derived systems, the apache httpd package installs modules under /usr/lib{,64}/httpd/modules, depending on whether the system is 32- or 64-bit. A symlink from /etc/httpd/modules is created which points to the proper module path. Use it to support apache on Fedora, CentOS, and Red Hat systems. Signed-off-by: Sebastian Kisela --- git-instaweb.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git-instaweb.sh b/git-instaweb.sh index 47e38f34c..e42e58528 100755 --- a/git-instaweb.sh +++ b/git-instaweb.sh @@ -332,6 +332,8 @@ apache2_conf () { module_path="/usr/lib/httpd/modules" test -d "/usr/lib/apache2/modules" && module_path="/usr/lib/apache2/modules" + test -d "/etc/httpd/modules" && + module_path="/etc/httpd/modules" fi bind= test x"$local" = xtrue && bind='127.0.0.1:' -- 2.18.0.99.gd2ee41e0e