10 lines
252 B
YAML
10 lines
252 B
YAML
|
---
|
||
|
- name: Unlock backups
|
||
|
hosts: serguzim_net
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Change password
|
||
|
ansible.builtin.shell:
|
||
|
cmd: autorestic unlock --force && autorestic exec -va unlock
|
||
|
chdir: "{{ (services_path, 'backup') | path_join }}"
|