|
| 1 | +--- |
| 2 | +- fail: msg="Bailing out. this play requires 'kvm_host_ip' KVM host ip" |
| 3 | + when: kvm_host_ip |length == 0 |
| 4 | + |
| 5 | +- fail: msg="Bailing out. this play requires 'kvm_host_interface' KVM host interface" |
| 6 | + when: kvm_host_interface |length == 0 |
| 7 | + |
| 8 | +- fail: msg="Bailing out. this play requires 'kvm_host_mask_prefix' KVM subnet mask prefix" |
| 9 | + when: kvm_host_mask_prefix is undefined |
| 10 | + |
| 11 | +- fail: msg="Bailing out. this play requires 'kvm_host_gw' KVM host kvm host gateway" |
| 12 | + when: kvm_host_gw |length == 0 |
| 13 | + |
| 14 | +- fail: msg="Bailing out. this play requires 'ssh_username' ssh username" |
| 15 | + when: ssh_username |length == 0 |
| 16 | + |
| 17 | +- fail: msg="Bailing out. this play requires 'kvm_host_domain' kvm host domain" |
| 18 | + when: kvm_host_domain |length == 0 |
| 19 | + |
| 20 | +- fail: msg="Bailing out. this play requires 'kvm_host_dns_server' kvm host dns server" |
| 21 | + when: kvm_host_dns_server |length == 0 |
| 22 | + |
| 23 | +- fail: msg="Bailing out. this play requires 'kvm_host_bootproto' KVM host bootproto" |
| 24 | + when: kvm_host_bootproto |length == 0 |
| 25 | + |
| 26 | +- fail: msg="Bailing out. this play requires 'kvm_bridge_type' KVM bridge type" |
| 27 | + when: kvm_bridge_type |length == 0 |
| 28 | + |
| 29 | +- fail: msg="Bailing out. this play requires 'qubinode_bridge_name' qubinode bridge name" |
| 30 | + when: qubinode_bridge_name |length == 0 |
| 31 | + |
| 32 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].mac_start' MAC start not found for nat network" |
| 33 | + when: libvirt_host_networks[0].mac_start |length == 0 |
| 34 | + |
| 35 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].mac' MAC not found for Bridge network" |
| 36 | + when: libvirt_host_networks[1].mac |length == 0 |
| 37 | + |
| 38 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].name' Name not found for nat network" |
| 39 | + when: libvirt_host_networks[0].name |length == 0 |
| 40 | + |
| 41 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].name' Name not found for Bridge network" |
| 42 | + when: libvirt_host_networks[1].name |length == 0 |
| 43 | + |
| 44 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].create' create bool not found for nat network" |
| 45 | + when: libvirt_host_networks[0].create is undefined |
| 46 | + |
| 47 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].create' create bool not found for Bridge network" |
| 48 | + when: libvirt_host_networks[1].create is undefined |
| 49 | + |
| 50 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].mode' mode not found for nat network" |
| 51 | + when: libvirt_host_networks[0].mode |length == 0 |
| 52 | + |
| 53 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].mode' mode not found for Bridge network" |
| 54 | + when: libvirt_host_networks[1].mode |length == 0 |
| 55 | + |
| 56 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].int_domain' Internal Domain not found for NAT network" |
| 57 | + when: libvirt_host_networks[0].int_domain |length == 0 |
| 58 | + |
| 59 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].bridge_device' bridge device not found for Bridge network" |
| 60 | + when: libvirt_host_networks[1].bridge_device |length == 0 |
| 61 | + |
| 62 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].external_domain' External Domain not found for NAT network" |
| 63 | + when: libvirt_host_networks[0].external_domain |length == 0 |
| 64 | + |
| 65 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].ifcfg_type' ifcfg_type not found for Bridge network" |
| 66 | + when: libvirt_host_networks[1].ifcfg_type |length == 0 |
| 67 | + |
| 68 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].master_count' Master count not found for NAT network" |
| 69 | + when: libvirt_host_networks[0].master_count is undefined |
| 70 | + |
| 71 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].compute_count' Computer Count not found for NAT network" |
| 72 | + when: libvirt_host_networks[0].compute_count is undefined |
| 73 | + |
| 74 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].subnet' subnet not found for NAT network" |
| 75 | + when: libvirt_host_networks[0].subnet |length == 0 |
| 76 | + |
| 77 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[0].mask' subnet mask not found for NAT network" |
| 78 | + when: libvirt_host_networks[0].mask |length == 0 |
| 79 | + |
| 80 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].ifcfg_bootproto' ifcfg_bootproto not found for Bridge network" |
| 81 | + when: libvirt_host_networks[1].ifcfg_bootproto |length == 0 |
| 82 | + |
| 83 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].bridge_slave_dev' bridge_slave_dev not found for Bridge network" |
| 84 | + when: libvirt_host_networks[1].bridge_slave_dev |length == 0 |
| 85 | + |
| 86 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].gateway' gateway not found for Bridge network" |
| 87 | + when: libvirt_host_networks[1].gateway |length == 0 |
| 88 | + |
| 89 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].mask_prefix' mask_prefix not found for Bridge network" |
| 90 | + when: libvirt_host_networks[1].mask_prefix is undefined |
| 91 | + |
| 92 | +- fail: msg="Bailing out. this play requires 'libvirt_host_networks[1].ipaddress' ipaddress not found for Bridge network" |
| 93 | + when: libvirt_host_networks[1].ipaddress |length == 0 |
0 commit comments