diff options
author | Tim Rozet <trozet@redhat.com> | 2017-09-19 16:14:18 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-09-20 14:37:35 +0000 |
commit | a105de59b9d492010c5c62afa5b3d0563893bf62 (patch) | |
tree | 3f696b9a668cbaa3f367eb75d7a170b16d95ea36 /build | |
parent | f6792ad2fff60fae3759eaf7d4092012acf360db (diff) |
Fixes missing libvirt-client in ISO
This was causing ISO install to fail because the libvirt modules were
missing for python-libvirt.
JIRA: APEX-517
Change-Id: Iaf127340864da58b2bace720293e515c8e9db426
Signed-off-by: Tim Rozet <trozet@redhat.com>
(cherry picked from commit add79730ea98607c814786235168a43c35d01444)
Diffstat (limited to 'build')
-rw-r--r-- | build/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Makefile b/build/Makefile index 5f078339..ae6fbf85 100644 --- a/build/Makefile +++ b/build/Makefile @@ -275,7 +275,7 @@ iso: iso-clean images rpms $(CENTISO) cd $(BUILD_DIR)/centos/Packages && yumdownloader python34-jinja2 python34-markupsafe ansible python34-six python34-cffi cd $(BUILD_DIR)/centos/Packages && yumdownloader ipxe-roms-qemu python34-idna python34-pycparser python-crypto python-httplib2 cd $(BUILD_DIR)/centos/Packages && yumdownloader python-jinja2 python-keyczar python-paramiko sshpass python-ecdsa python34-ply - cd $(BUILD_DIR)/centos/Packages && yumdownloader libvirt-python python-lxml + cd $(BUILD_DIR)/centos/Packages && yumdownloader libvirt-client libvirt-python python-lxml cd $(BUILD_DIR)/centos/Packages && curl -O http://artifacts.opnfv.org/apex/dependencies/python3-ipmi-0.3.0-1.noarch.rpm cd $(BUILD_DIR)/centos/Packages && curl -O http://artifacts.opnfv.org/apex/dependencies/python34-asn1crypto-0.22.0-1.el7.centos.noarch.rpm cd $(BUILD_DIR)/centos/Packages && curl -O http://artifacts.opnfv.org/apex/dependencies/python34-cryptography-2.0.3-1.el7.centos.x86_64.rpm |