diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/deploy.sh | 2 | ||||
-rwxr-xr-x | ci/dev_deploy_check.sh | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 44914f22..05e2fa2b 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -527,7 +527,7 @@ EOF for n in private_network public_network storage_network api_network; do if [[ $enabled_network_list =~ $n ]]; then echo -n "$n " - virsh attach-interface --domain baremetal${i} --type network --source $n --model rtl8139 --config + virsh attach-interface --domain baremetal${i} --type network --source $n --model virtio --config fi done else diff --git a/ci/dev_deploy_check.sh b/ci/dev_deploy_check.sh index 8ba46ab0..831ff1fd 100755 --- a/ci/dev_deploy_check.sh +++ b/ci/dev_deploy_check.sh @@ -25,6 +25,12 @@ if ! sudo yum $rdo_action -y https://www.rdoproject.org/repos/rdo-release.rpm; exit 1 fi +# update ipxe-roms-qemu +if ! sudo yum update -y ipxe-roms-qemu; then + echo "Failed to update ipxe-roms-qemu package..." + exit 1 +fi + # check for other packages for i in epel-release python34-PyYAML openvswitch openstack-tripleo libguestfs libguestfs-tools-c libvirt-python; do # Make sure deploy deps are installed |