12 lines
243 B
YAML
12 lines
243 B
YAML
---
|
|
# handlers file for bareos_sd
|
|
|
|
- name: Check configuration
|
|
ansible.builtin.command: "/usr/sbin/bareos-sd --test-config"
|
|
changed_when: false
|
|
|
|
- name: Restart bareos-sd
|
|
ansible.builtin.service:
|
|
name: bareos-sd
|
|
state: restarted
|