← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:mod-wsgi-py3 into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:mod-wsgi-py3 into launchpad:master.

Commit message:
rocketfuel-setup: Switch to libapache2-mod-wsgi-py3

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/429134

This is used for convoy (`/usr/share/convoy/convoy.wsgi` works with either Python 2 or 3) and the archive authenticator (which requires Python 3), so it makes sense to install the Python 3 version of the Apache WSGI module.
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:mod-wsgi-py3 into launchpad:master.
diff --git a/utilities/rocketfuel-setup b/utilities/rocketfuel-setup
index 06e5d2c..3021e1b 100755
--- a/utilities/rocketfuel-setup
+++ b/utilities/rocketfuel-setup
@@ -139,7 +139,7 @@ do_install() {
   }
 
 sudo apt update
-REQUIRED_PACKAGES="launchpad-developer-dependencies apache2 libapache2-mod-wsgi"
+REQUIRED_PACKAGES="launchpad-developer-dependencies apache2 libapache2-mod-wsgi-py3"
 for pkg in $REQUIRED_PACKAGES; do
   do_install;
 done