From: parmentelat Date: Thu, 13 Dec 2018 20:01:51 +0000 (+0100) Subject: httpd config can also deal with the python3 wsgi module X-Git-Tag: myplc-7.0-0~6 X-Git-Url: http://git.onelab.eu/?p=myplc.git;a=commitdiff_plain;h=53c1e4601ebbbf8baaa60b61bb65fc763247235e httpd config can also deal with the python3 wsgi module --- 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"