Browse Source

local facts update

master
parent
commit
047cb40b1a
1 changed files with 8 additions and 6 deletions
  1. +8
    -6
      tasks/local_facts.yaml

+ 8
- 6
tasks/local_facts.yaml View File

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


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


- name: local facts
- name: set ansible local fact
copy: 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: setup:
filter: ansible_local
when: _local_facts_set.changed

Loading…
Cancel
Save