Skip to content
Snippets Groups Projects
Commit 3ff3a7bf authored by Felix Schäfer's avatar Felix Schäfer :construction_worker:
Browse files

truthy values

parent e391d5e6
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
- name: Gather facts for backup target
setup:
delegate_to: "{{ borgbackup_target_host }}"
delegate_facts: True
delegate_facts: true
when: hostvars[borgbackup_target_host]['ansible_default_ipv4'] is not defined
- name: Set target IP
......@@ -117,11 +117,11 @@
- name: Enable borgmatic timer
service:
name: "borgbackup.timer"
enabled: yes
enabled: true
state: started
- name: Enable borgmatic-check timer
service:
name: "borgbackup-check.timer"
enabled: yes
enabled: true
state: started
......@@ -2,7 +2,7 @@
- name: Create Group
group:
name: "borgbackup"
ignore_errors: yes
ignore_errors: true
register: create_group
- name: Create Group Fallback
......@@ -18,7 +18,7 @@
user:
name: "borgbackup"
group: "borgbackup"
ignore_errors: yes
ignore_errors: true
register: create_user
- name: Create User Fallback
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment