您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617
  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. mode: 0600
  11. register: _local_facts_set
  12. - name: Gathering Facts
  13. setup:
  14. when: _local_facts_set.changed