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
Commit 6422cd8f authored by Arthur BOUDREAULT's avatar Arthur BOUDREAULT
Browse files

refactor: better alignment for tags

parent 180e9ec5
No related branches found
No related tags found
No related merge requests found
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
delegate_to: localhost delegate_to: localhost
become: False become: False
tags: tags:
- backup - backup
- borg - borg
- name: Gather facts for BorgBackup role - name: Gather facts for BorgBackup role
ansible.builtin.setup: ansible.builtin.setup:
...@@ -35,8 +35,8 @@ ...@@ -35,8 +35,8 @@
ansible.builtin.import_role: ansible.builtin.import_role:
name: m3nu.ansible_role_borgbackup name: m3nu.ansible_role_borgbackup
tags: tags:
- backup - backup
- borg - borg
- name: Create backup folder for BorgBackup repository - name: Create backup folder for BorgBackup repository
ansible.builtin.file: ansible.builtin.file:
...@@ -44,13 +44,13 @@ ...@@ -44,13 +44,13 @@
state: directory state: directory
mode: '0750' mode: '0750'
tags: tags:
- backup - backup
- borg - borg
- name: Configure host for Borg Remote repository - name: Configure host for Borg Remote repository
tags: tags:
- backup - backup
- borg - borg
block: block:
- name: deploy ssh public key for BorgBackup - name: deploy ssh public key for BorgBackup
ansible.builtin.copy: ansible.builtin.copy:
...@@ -77,8 +77,8 @@ ...@@ -77,8 +77,8 @@
state: present state: present
when: ynh_ssh_borg_command is defined when: ynh_ssh_borg_command is defined
tags: tags:
- backup - backup
- borg - borg
- name: change archive name in "/etc/borgmatic/{{ borgmatic_config_name }}" - name: change archive name in "/etc/borgmatic/{{ borgmatic_config_name }}"
...@@ -88,8 +88,8 @@ ...@@ -88,8 +88,8 @@
line: " archive_name_format: {{ borg_archive_name_format }}" line: " archive_name_format: {{ borg_archive_name_format }}"
state: present state: present
tags: tags:
- backup - backup
- borg - borg
- name: Create borg launch script in /usr/local/bin - name: Create borg launch script in /usr/local/bin
ansible.builtin.copy: ansible.builtin.copy:
...@@ -102,11 +102,11 @@ ...@@ -102,11 +102,11 @@
group: root group: root
mode: "0755" mode: "0755"
tags: tags:
- backup - backup
- borg - borg
- name: Initialize a new Borg repository - name: Initialize a new Borg repository
ansible.builtin.command: "{{ borg_init_command }}" ansible.builtin.command: "{{ borg_init_command }}"
tags: tags:
- backup - backup
- borg - borg
...@@ -27,12 +27,12 @@ ...@@ -27,12 +27,12 @@
ansible.builtin.include_tasks: borgbackup.yml ansible.builtin.include_tasks: borgbackup.yml
when: ynh_borg_backup_scheduled when: ynh_borg_backup_scheduled
tags: tags:
- backup - backup
- borg - borg
- name: Use Restic with YunoHost - name: Use Restic with YunoHost
ansible.builtin.include_tasks: restic.yml ansible.builtin.include_tasks: restic.yml
when: ynh_restic_backup_scheduled when: ynh_restic_backup_scheduled
tags: tags:
- backup - backup
- restic - restic
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
delegate_to: localhost delegate_to: localhost
become: False become: False
tags: tags:
- backup - backup
- restic - restic
- name: Gather facts for Restic role - name: Gather facts for Restic role
ansible.builtin.setup: ansible.builtin.setup:
...@@ -35,5 +35,5 @@ ...@@ -35,5 +35,5 @@
ansible.builtin.import_role: ansible.builtin.import_role:
name: do1jlr.restic name: do1jlr.restic
tags: tags:
- backup - backup
- restic - restic
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