Temp fix for regression introduced by bkctld 2.x
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

The erroneous error codes returned by bkctld will make playbooks
fail even though the commands run succesfully.
See evolix/evobackup#31
This commit is contained in:
Patrick Marchand 2020-01-16 12:18:51 +01:00
parent 0b4095d8dd
commit af61b7f97d
1 changed files with 16 additions and 3 deletions

View File

@ -12,11 +12,24 @@
- evobackup_client
- evobackup_client_jail
- name: 'add ssh key to jail'
command: "bkctld key {{ evolinux_hostname }} /root/{{ evolinux_hostname }}.pub"
- name: 'create jail'
command: "bkctld init {{ evolinux_hostname }}"
args:
creates: "/backup/jails/{{ evolinux_hostname }}/"
become: true
delegate_to: "{{ evobackup_client__hosts[0].ip }}"
notify:
- 'created new jail'
tags:
- evobackup_client
- evobackup_client_jail
# temp fix for bkctld 2.x because the ip and key command return 1
# if the jail is not started, see https://gitea.evolix.org/evolix/evobackup/issues/31
- name: 'start jail'
command: "bkctld restart {{ evolinux_hostname }}"
become: true
delegate_to: "{{ evobackup_client__hosts[0].ip }}"
notify: 'jail updated'
tags:
- evobackup_client
- evobackup_client_jail