1
0
Fork 0

Simplify fact gathering by using the cli instead of a webapi request

This commit is contained in:
Julien Dessaux 2023-01-23 17:33:53 +01:00
parent 23e2941b3a
commit b6ee8f76c2
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 84 additions and 60 deletions

View file

@ -1,5 +1,21 @@
- action: syncthing_pre
- name: enforces service directories
file:
state: directory
path: "{{ item }}"
owner: "{{ syncthing_pre.user_group }}"
mode: 0700
loop:
- "{{ syncthing_pre.config_dir }}"
- "{{ syncthing_pre.data_dir }}"
- name: Install syncthing dependencies
package:
name: "{{ syncthing_pre.packages }}"
- name: Push syncthing gathering fact on clients
copy:
template:
src: syncthing.fact
dest: /etc/ansible/facts.d/
mode: 0500
@ -10,49 +26,20 @@
setup: filter=ansible_local
when: syncthing_gathering_fact.changed
#- debug:
# msg: "{{ syncthing_config }}"
# changed_when: true
- action: syncthing_validate
- action: syncthing_init
- name: Install syncthing dependencies
package:
name: "{{ syncthing_config.packages }}"
- name: enforces service directories
file:
state: directory
path: "{{ item }}"
owner: syncthing
mode: 0700
loop: "{{ syncthing_config.folders_to_create }}"
- name: enforces config file
template:
src: config.xml
dest: "{{ syncthing_config.config_path }}"
owner: "{{ syncthing_config.user_group }}"
mode: 0640
dest: "{{ syncthing_pre.config_dir }}"
owner: "{{ syncthing_pre.user_group }}"
mode: 0400
notify: restart syncthing
- name: start and enables service
service:
name: syncthing
name: "{{ syncthing_pre.service }}"
enabled: yes
state: started
- name: reload ansible_local
setup: filter=ansible_local
when: syncthing_gathering_fact.changed
- name: enforces config file
template:
src: config.xml
dest: "{{ syncthing_config.config_path }}"
owner: "{{ syncthing_config.user_group }}"
mode: 0640
when: syncthing_gathering_fact.changed
notify: restart syncthing