checkpoint.yml 387 B

1234567891011121314151617
  1. ---
  2. - name: check for static inventory dir
  3. stat:
  4. path: "{{ inventory_path }}"
  5. register: stat_inventory_path
  6. - name: create static inventory dir
  7. file:
  8. path: "{{ inventory_path }}"
  9. state: directory
  10. mode: 0750
  11. when: not stat_inventory_path.stat.exists
  12. - name: create inventory from template
  13. template:
  14. src: inventory.j2
  15. dest: "{{ inventory_path }}/hosts"