Sfoglia il codice sorgente

local facts update

master
parent
commit
047cb40b1a
1 ha cambiato i file con 8 aggiunte e 6 eliminazioni
  1. +8
    -6
      tasks/local_facts.yaml

+ 8
- 6
tasks/local_facts.yaml Vedi File

@@ -1,15 +1,17 @@
---

- name: local facts directory
- name: ansible local facts directory
file:
path: /etc/ansible/facts.d
state: directory

- name: local facts
- name: set ansible local fact
copy:
content: "{{ _netdata_local_facts | to_json }}"
dest: /etc/ansible/facts.d/netdata.fact
content: "{{_local_facts|to_json}}"
dest: /etc/ansible/facts.d/{{role_name}}.fact
mode: 0600
register: _local_facts_set

- name: reread local facts
- name: Gathering Facts
setup:
filter: ansible_local
when: _local_facts_set.changed

Loading…
Annulla
Salva