diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/dev_dep_check.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ci/dev_dep_check.sh b/ci/dev_dep_check.sh index fb7ede71..fe4976a1 100755 --- a/ci/dev_dep_check.sh +++ b/ci/dev_dep_check.sh @@ -35,7 +35,7 @@ fi for i in epel-release python34-PyYAML openvswitch libguestfs \ libguestfs-tools-c libvirt-python python2-oslo-config \ python2-debtcollector python34-devel libxslt-devel \ - libxml2-devel python-virtualbmc; do + libxml2-devel python-virtualbmc python34-jinja2 python34-pip; do # Make sure deploy deps are installed if ! rpm -q $i > /dev/null; then if ! sudo yum install -y $i; then @@ -46,11 +46,7 @@ for i in epel-release python34-PyYAML openvswitch libguestfs \ done # install pip dependencies -easy_install-3.4 pip -sudo pip3 install python-ipmi - -# Make sure jinja2 is installed -easy_install-3.4 jinja2 +sudo pip3 install python-ipmi gitpython pygerrit2 # Required packages to redirect stdin with virt-customize if ! sudo yum -y install libguestfs libguestfs-tools libguestfs-tools-c supermin supermin5 supermin-helper perl-Sys-Guestfs python-libguestfs; then |