torwachter: rm d3 key as he does no longer want access as told by ruru. Also better...
[noc.git] / ansible / vm-update.yml
index 548a49f..b40e06d 100644 (file)
 
 - name: Update network configuration & shutdown VM
   hosts: "{{ hostname }}"
-  gather_facts: no
   roles:
     - vm/network
 
-  tasks:
-    - meta: flush_handlers
-
+  post_tasks:
     - name: Shutdown VM
       async: 1
       poll: 0
 
 - name: Update VM definition
   hosts: _vmhost_
-  vars:
-    run_installer: no
-
-  tasks:
+  pre_tasks:
     - name: Wait for VM to shut down
       wait_for_virt:
         name: "{{ hostname }}"
         states: shutdown
         timeout: 30
-    - name: Undefine VM
-      virt:
-        name: "{{ hostname }}"
-        command: undefine
 
-    - name: Redefine VM
-      virt:
-        name: "{{ hostname }}"
-        command: define
-        xml: "{{ lookup('template', 'roles/vm/install/templates/libvirt-domain.xml.j2') }}"
-
-    - name: Restart VM
-      virt:
-        name: "{{ hostname }}"
-        state: running
-
-    - name: mark vm as autostarted
-      when: hostvars[hostname].install_cooked.autostart is defined
-      virt:
-        name: "{{ hostname }}"
-        autostart: "{{ hostvars[hostname].install_cooked.autostart }}"
-        command: info ## virt module needs either command or state
+  roles:
+    - vm/define
 
 - name: Apply the base vm/guest role
   hosts: "{{ hostname }}"