Browse code

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

Ian Wienand authored on 2018/05/03 15:13:38
Showing 1 changed files
... ...
@@ -504,8 +504,6 @@ function install_keystone {
504 504
 
505 505
     if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
506 506
         install_apache_wsgi
507
-    elif [ "$KEYSTONE_DEPLOY" == "uwsgi" ]; then
508
-        pip_install uwsgi
509 507
     fi
510 508
 }
511 509