You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
329B

  1. ---
  2. - name: ansible local facts directory
  3. file:
  4. path: /etc/ansible/facts.d
  5. state: directory
  6. - name: set ansible local fact
  7. copy:
  8. content: "{{_local_facts|to_json}}"
  9. dest: /etc/ansible/facts.d/{{role_name}}.fact
  10. register: _local_facts_set
  11. - name: Gathering Facts
  12. setup:
  13. when: _local_facts_set.changed