summaryrefslogtreecommitdiffstats
path: root/ansible/deployment_poc/tasks/autoyast_assistant.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/deployment_poc/tasks/autoyast_assistant.yml')
-rw-r--r--ansible/deployment_poc/tasks/autoyast_assistant.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/ansible/deployment_poc/tasks/autoyast_assistant.yml b/ansible/deployment_poc/tasks/autoyast_assistant.yml
new file mode 100644
index 0000000..7a7542a
--- /dev/null
+++ b/ansible/deployment_poc/tasks/autoyast_assistant.yml
@@ -0,0 +1,38 @@
+---
+- name: Monitor OS installation
+ block:
+ - name: Monitor first stage
+ ansible.builtin.expect:
+ command: "/usr/bin/virsh -c {{ libvirt_url }} console {{ vm_name }} --force"
+ responses:
+ "reboot: Restarting system":
+ - "\u001d"
+ timeout: 720
+ ignore_errors: true
+ no_log: true
+
+ - name: Destroy
+ community.libvirt.virt:
+ uri: "{{ libvirt_url }}"
+ command: destroy
+ name: "{{ vm_name }}"
+ state: destroyed
+
+ - name: Start
+ community.libvirt.virt:
+ uri: "{{ libvirt_url }}"
+ command: start
+ name: "{{ vm_name }}"
+ state: running
+
+ - name: Unlock
+ ansible.builtin.expect:
+ command: "/usr/bin/virsh -c {{ libvirt_url }} console {{ vm_name }} --force"
+ responses:
+ "Please enter passphrase for disk cr_root:":
+ - "{{ luks_passphrase }}"
+ - "\u001d"
+ ignore_errors: yes
+ no_log: true
+
+ delegate_to: localhost