change a bunch of when_strings to when's and fix up variables
This commit is contained in:
parent
d58aa21f37
commit
48a865fbc6
2 changed files with 7 additions and 6 deletions
|
@ -9,7 +9,7 @@
|
||||||
tasks:
|
tasks:
|
||||||
- name: fail if the host/ip is not up
|
- name: fail if the host/ip is not up
|
||||||
local_action: wait_for host=${inventory_hostname} port=22 delay=0 timeout=10
|
local_action: wait_for host=${inventory_hostname} port=22 delay=0 timeout=10
|
||||||
when_string: ${inventory_hostname} not in ${result.list_vms}
|
when_string: inventory_hostname not in result.list_vms
|
||||||
|
|
||||||
- name: pause for 30s before doing it
|
- name: pause for 30s before doing it
|
||||||
pause: seconds=30 prompt="Destroying vm now $target, abort if this is wrong"
|
pause: seconds=30 prompt="Destroying vm now $target, abort if this is wrong"
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
- name: ensure the lv for the host is made
|
- name: ensure the lv for the host is made
|
||||||
lvol: lv=$inventory_hostname vg=$volgroup size=$lvm_size state=present
|
lvol: lv=$inventory_hostname vg=$volgroup size=$lvm_size state=present
|
||||||
delegate_to: $vmhost
|
delegate_to: $vmhost
|
||||||
when_string: ${inventory_hostname} not in ${result.list_vms}
|
when: inventory_hostname not in result.list_vms
|
||||||
|
|
||||||
- name: run the virt-install
|
- name: run the virt-install
|
||||||
shell: ${install_command}
|
shell: ${install_command}
|
||||||
delegate_to: $vmhost
|
delegate_to: $vmhost
|
||||||
when_string: ${inventory_hostname} not in ${result.list_vms}
|
when: inventory_hostname not in result.list_vms
|
||||||
|
|
||||||
- name: wait for the install to finish - by watching the domstate
|
- name: wait for the install to finish - by watching the domstate
|
||||||
# this just keeps checking the domstate until it stops running
|
# this just keeps checking the domstate until it stops running
|
||||||
|
@ -23,15 +23,16 @@
|
||||||
delegate_to: $vmhost
|
delegate_to: $vmhost
|
||||||
async: 1200
|
async: 1200
|
||||||
poll: 10
|
poll: 10
|
||||||
when_string: ${inventory_hostname} not in ${result.list_vms}
|
when_string: inventory_hostname not in result.list_vms
|
||||||
|
|
||||||
- name: start the vm up
|
- name: start the vm up
|
||||||
action: virt state=running name=${inventory_hostname}
|
action: virt state=running name=${inventory_hostname}
|
||||||
delegate_to: $vmhost
|
delegate_to: $vmhost
|
||||||
when_string: ${inventory_hostname} not in ${result.list_vms}
|
when_string: inventory_hostname not in result.list_vms
|
||||||
|
|
||||||
- name: wait for ssh on the vm to start back
|
- name: wait for ssh on the vm to start back
|
||||||
local_action: wait_for delay=10 host=${inventory_hostname} port=22 state=started timeout=1200
|
local_action: wait_for delay=10 host=${inventory_hostname} port=22 state=started timeout=1200
|
||||||
when_string: ${inventory_hostname} not in ${result.list_vms}
|
when_string: inventory_hostname not in result.list_vms
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue