ansible-roles/evobackup-client/handlers/main.yml
Patrick Marchand a18076e878
Some checks failed
continuous-integration/drone/push Build is failing
Added handling of bkctld sync to evobackup-client
2020-03-11 09:10:01 -04:00

18 lines
671 B
YAML

---
- name: restart minifirewall
command: /etc/init.d/minifirewall restart
register: minifirewall_init_restart
failed_when: "'starting IPTables rules is now finish : OK' not in minifirewall_init_restart.stdout"
changed_when: "'starting IPTables rules is now finish : OK' in minifirewall_init_restart.stdout"
- name: 'created new jail'
command: "bkctld restart {{ evolinux_hostname }}"
delegate_to: "{{ evobackup_client__hosts[0].ip }}"
- name: 'jail updated'
command:
- "bkctld restart {{ evolinux_hostname }}"
- "bkctld sync {{ evolinux_hostname }}"
delegate_to: "{{ evobackup_client__hosts[0].ip }}"
when: evobackup_client__hosts|length > 1