From ac3a86983e4c049a3115c7bd77eeacaeb19d0ca3 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Thu, 30 Mar 2017 23:03:43 -0400 Subject: Updating Apex to OpenStack Ocata - power management updated to virtualbmc, pxe_ssh is deprecated - removing custom tacker build - removing custom congress build - disabling yum update in undercloud on the cli instead of in a patch - Undercloud is direct kernel booted now, there are no kernel and initrd in the disk image from upstream - remove OpenDaylight previous to Carbon JIRA: APEX-433 JIRA: APEX-432 JIRA: APEX-431 Change-Id: I6963f16e65eacade5607a3082b58b6150331406c Signed-off-by: Dan Radez --- ci/dev_dep_check.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ci/dev_dep_check.sh') diff --git a/ci/dev_dep_check.sh b/ci/dev_dep_check.sh index 6d0aa11f..71cea22c 100755 --- a/ci/dev_dep_check.sh +++ b/ci/dev_dep_check.sh @@ -32,8 +32,11 @@ if ! sudo yum update -y ipxe-roms-qemu; then fi # check for other packages -for i in epel-release python34-PyYAML openvswitch openstack-tripleo libguestfs libguestfs-tools-c libvirt-python python2-oslo-config python2-debtcollector python34-devel libxslt-devel libxml2-devel; do -# Make sure deploy deps are installed +for i in epel-release python34-PyYAML openvswitch openstack-tripleo libguestfs \ + libguestfs-tools-c libvirt-python python2-oslo-config \ + python2-debtcollector python34-devel libxslt-devel \ + libxml2-devel python-virtualbmc; do + # Make sure deploy deps are installed if ! rpm -q $i > /dev/null; then if ! sudo yum install -y $i; then echo "Failed to install $i package..." @@ -49,9 +52,6 @@ sudo pip3 install python-ipmi # Make sure jinja2 is installed easy_install-3.4 jinja2 -# TODO(cgoncalves): remove once congress RPM is downloaded from upstream -easy_install-3.4 tox - # 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 echo "Failed to install supermin/libguestfs packages..." -- cgit 1.2.3-korg