]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-dashboard-pull-requests: install runtime dependencies of dashboard 1165/head
authorKefu Chai <kchai@redhat.com>
Wed, 17 Oct 2018 14:34:46 +0000 (22:34 +0800)
committerKefu Chai <kchai@redhat.com>
Wed, 17 Oct 2018 14:37:53 +0000 (22:37 +0800)
some of them are already fulfilled by the build time dependencies. and
since mgr is built with python2 runtime, so we don't need to install
python3 modules.

Signed-off-by: Kefu Chai <kchai@redhat.com>
ceph-dashboard-pull-requests/setup/setup

index 2c127dd065d6c901ae2d72232c08ad5b69103b58..46c6550215c720e2d7b29a8a0a35ef891d3c081b 100644 (file)
@@ -7,7 +7,7 @@ if grep -q  debian /etc/*-release; then
     sudo apt-key add linux_signing_key.pub
     sudo apt-get update
     sudo apt-get install -y google-chrome-stable
-    sudo apt-get install -y python3-werkzeug python3-bcrypt python3-routes python3-requests
+    sudo apt-get install -y python-requests python-openssl python-jinja2
 
 elif grep -q rhel /etc/*-release; then
     sudo dd of=/etc/yum.repos.d/google-chrome.repo status=none <<EOF
@@ -19,5 +19,5 @@ gpgcheck=1
 gpgkey=https://dl.google.com/linux/linux_signing_key.pub
 EOF
     sudo yum install -y google-chrome-stable
-    sudo yum install -y python3-werkzeug python3-bcrypt python3-routes python3-requests
+    sudo yum install -y python-requests pyOpenSSL python-jinja2
 fi