[PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-08 Thread Sebastian Kisela
Junio thanks for the tip! Your suggestion definitely looks better. BTW. I apologize for polluting the git mailing list with the recent email. I am still new to git-send-email.

[PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-08 Thread Sebastian Kisela
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 sy

Re: [PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-07 Thread Junio C Hamano
Junio C Hamano writes: > if test -z "$module_path" > then > for candidate in \ > /etc/httpd \ > /usr/lib/apache2 \ > /usr/lib/httpd \ I obviously missed semicolon here... > do >

Re: [PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-07 Thread Junio C Hamano
Sebastian Kisela writes: > 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 apach

[PATCH 1/2] git-instaweb: support Fedora/Red Hat apache module path

2018-08-07 Thread Sebastian Kisela
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 sy