From 53c1e4601ebbbf8baaa60b61bb65fc763247235e Mon Sep 17 00:00:00 2001 From: parmentelat Date: Thu, 13 Dec 2018 21:01:51 +0100 Subject: [PATCH] httpd config can also deal with the python3 wsgi module --- plc.d/httpd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plc.d/httpd b/plc.d/httpd index b14c76f..526e37c 100755 --- a/plc.d/httpd +++ b/plc.d/httpd @@ -183,7 +183,9 @@ EOF # with mod_python preferred if rpm -q mod_python >& /dev/null ; then configure_for_mod_python=true - elif rpm -q mod_wsgi >& /dev/null || rpm -q python2-mod_wsgi >& /dev/null ; then + elif rpm -q mod_wsgi >& /dev/null \ + || rpm -q python2-mod_wsgi >& /dev/null \ + || rpm -q python3-mod_wsgi >& /dev/null ; then configure_for_mod_wsgi=true else echo "Requires mod_python or mod_wsgi.... exiting" -- 2.43.0