File tree Expand file tree Collapse file tree 6 files changed +13
-9
lines changed
Expand file tree Collapse file tree 6 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ install:
1818
1919script :
2020 # Check the role/playbook's syntax.
21- - ansible-galaxy install paulfantom.restic
21+ - ansible-galaxy install coopdevs.ansible_restic
2222 - ansible-playbook -i tests/inventory tests/test.yml --syntax-check
2323 - ansible-lint tasks/ handlers/
2424 - yamllint -c .yamllint.yaml .
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ v1.2.10] - 2023-08-16
8+ ### Fixed
9+ - Replace paulfantom restic role because of no maintenace
10+ See [ #45 ] ( https://github.com/coopdevs/backups_role/pull/45 )
11+
712## [ v1.2.9] - 2022-08-04
813### Fixed
914- Escape dollar character in docker compose
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Backup and restore strategies for Coopdevs projects.
66Requirements
77------------
88
9- This role uses [ Restic] ( https://restic.net ) with the help of [ restic-ansible] ( https://github.com/paulfantom/ansible- restic )
9+ This role uses [ Restic] ( https://restic.net ) with the help of [ restic-ansible] ( https://github.com/coopdevs/ restic-role )
1010
1111Role Variables
1212--------------
@@ -88,7 +88,7 @@ backups_role_b2_app_key:
8888Dependencies
8989------------
9090
91- * [paulfantom.restic ](https://galaxy.ansible. com/paulfantom /restic)
91+ * [coopdevs.ansible_restic ](https://github. com/coopdevs /restic-role )
9292
9393Usage
9494-----
Original file line number Diff line number Diff line change @@ -22,8 +22,7 @@ galaxy_info:
2222 - backups
2323
2424dependencies :
25- - name : paulfantom.restic
26- version : 0.13.0
25+ - name : coopdevs.ansible_restic
2726 # We don't want the role to run
2827 # when we import tasks from restore-to-controller,
2928 # as it is executed locally to the controller machine
Original file line number Diff line number Diff line change 7979
8080- name : Install restic and configure restic repository
8181 include_role :
82- name : vendor/paulfantom.restic
82+ name : vendor/coopdevs.ansible_restic
8383 vars :
8484 restic_version : " {{ backups_role_restic_version }}"
8585 restic_user : " {{ backups_role_user_name }}"
Original file line number Diff line number Diff line change 3030
3131 - name : Configure restic
3232 import_role :
33- name : paulfantom.restic
33+ name : coopdevs.ansible_restic
3434 tasks_from : preflight.yml
3535
3636 - name : Install restic using restic-role
3737 import_role :
38- name : paulfantom.restic
38+ name : coopdevs.ansible_restic
3939 tasks_from : install.yml
4040 vars :
4141 - restic_install_path : " {{ work_path }}"
4949
5050 - name : Render script template that wraps restic with credentials
5151 template :
52- src : ' ../vendor/paulfantom.restic /templates/restic.helper.j2'
52+ src : ' ../vendor/coopdevs.ansible_restic /templates/restic.helper.j2'
5353 dest : " {{ work_path }}/restic-{{ backups_role_restic_repo_name }}"
5454 mode : ' 0750'
5555 no_log : true
You can’t perform that action at this time.
0 commit comments