Skip to content

Commit c2d4fab

Browse files
authored
Merge pull request #45 from coopdevs/replace-restic-role
Replace paulfantom restic role because of no maintenace
2 parents 00d2514 + 3c3314c commit c2d4fab

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install:
1818

1919
script:
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 .

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Backup and restore strategies for Coopdevs projects.
66
Requirements
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

1111
Role Variables
1212
--------------
@@ -88,7 +88,7 @@ backups_role_b2_app_key:
8888
Dependencies
8989
------------
9090
91-
* [paulfantom.restic](https://galaxy.ansible.com/paulfantom/restic)
91+
* [coopdevs.ansible_restic](https://github.com/coopdevs/restic-role)
9292
9393
Usage
9494
-----

meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ galaxy_info:
2222
- backups
2323

2424
dependencies:
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

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
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 }}"

tasks/restore-to-controller.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
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 }}"
@@ -49,7 +49,7 @@
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

0 commit comments

Comments
 (0)