main.yml 522 B

1234567891011121314151617181920
  1. ---
  2. - name: Ensure QEMU tools is installed
  3. apt:
  4. name: qemu-guest-agent
  5. state: present
  6. update_cache: yes
  7. - name: Ensure rsync is installed
  8. apt:
  9. name: rsync
  10. state: present
  11. # Cloudinit sets this now, no need to remove it.
  12. # - name: Remove localhost hostname definition
  13. # lineinfile:
  14. # path: /etc/hosts
  15. # # hostnamectl doesn't update the hostname in this entry, so we can't
  16. # # match against {{ ansible_facts['nodename'] }}.
  17. # regexp: "^127\\.0\\.1\\.1[ \\t]+"
  18. # state: absent