From 076c9f1b4bf405994f311aaf4aba3ab179f178e3 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 3 May 2018 16:13:38 +1000 Subject: [PATCH] Don't install uwsgi for keystone This is already unconditionally installed via install_apache_uwsgi in stack.sh; we don't need to install it again in keystone. Since we need workarounds on some platforms (see I3bc5260e77cebe852cc8d70d9eddf84ef71d74bb) we only want to do this in one place. Change-Id: I40d84cbdf68cf6bb5cba143b6c0c126cdb8a84d4 --- lib/keystone | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/keystone b/lib/keystone index d2f72a37fe..1910f348b7 100644 --- a/lib/keystone +++ b/lib/keystone @@ -504,8 +504,6 @@ function install_keystone { if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then install_apache_wsgi - elif [ "$KEYSTONE_DEPLOY" == "uwsgi" ]; then - pip_install uwsgi fi }