소스 검색

local facts update

master
부모
커밋
047cb40b1a
1개의 변경된 파일8개의 추가작업 그리고 6개의 파일을 삭제
  1. +8
    -6
      tasks/local_facts.yaml

+ 8
- 6
tasks/local_facts.yaml 파일 보기

@@ -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

불러오는 중...
취소
저장