Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Resolve "double-check Ansible tags"

Merged Arthur BOUDREAULT requested to merge 59-double-check-ansible-tags into main
All threads resolved!
1 file
+ 8
8
Compare changes
  • Side-by-side
  • Inline
@@ -21,22 +21,22 @@
ansible.builtin.command: ansible-galaxy install m3nu.ansible_role_borgbackup,v0.9.0 -p ~/.ansible/roles
delegate_to: localhost
become: False
tags: borg
# tags: borg
- name: run BorgBackup role
ansible.builtin.import_role:
name: m3nu.ansible_role_borgbackup
tags: borg
# tags: borg
- name: Create backup folder for BorgBackup repository
ansible.builtin.file:
path: "{{ borg_repository }}"
state: directory
mode: '0750'
tags: borg
# tags: borg
- name: Configure host for Borg Remote repository
tags: borg
# tags: borg
block:
- name: deploy ssh public key for BorgBackup
ansible.builtin.copy:
@@ -62,7 +62,7 @@
line: "{{ ynh_ssh_borg_command }}"
state: present
when: ynh_ssh_borg_command is defined
tags: borg
# tags: borg
- name: change archive name in "/etc/borgmatic/{{ borgmatic_config_name }}"
@@ -71,7 +71,7 @@
regexp: "archive_name_format:"
line: " archive_name_format: {{ borg_archive_name_format }}"
state: present
tags: borg
# tags: borg
- name: Create borg launch script in /usr/local/bin
ansible.builtin.copy:
@@ -83,8 +83,8 @@
owner: root
group: root
mode: "0755"
tags: borg
# tags: borg
- name: Initialize a new Borg repository
ansible.builtin.command: "{{ borg_init_command }}"
tags: borg
# tags: borg
Loading