ansible-roles/evobackup-client/handlers/main.yml

21 lines
721 B
YAML
Raw Normal View History

2019-08-30 20:43:52 +02:00
---
- name: restart minifirewall
ansible.builtin.command:
cmd: /etc/init.d/minifirewall restart
2019-10-03 16:44:21 +02:00
register: minifirewall_init_restart
failed_when:
- "'starting IPTables rules is now finish : OK' not in minifirewall_init_restart.stdout"
- "'minifirewall started' not in minifirewall_init_restart.stdout"
- name: 'created new jail'
ansible.builtin.command:
cmd: "bkctld restart {{ evolinux_hostname }}"
delegate_to: "{{ evobackup_client__hosts[0].ip }}"
- name: 'jail updated'
ansible.builtin.command:
cmd: "bkctld restart {{ evolinux_hostname }}"
# - "bkctld sync {{ evolinux_hostname }}"
delegate_to: "{{ evobackup_client__hosts[0].ip }}"
when: evobackup_client__hosts | length > 1