12 lines
267 B
YAML
12 lines
267 B
YAML
---
|
|
# handlers file for bareos_fd
|
|
|
|
- name: Check configuration
|
|
ansible.builtin.command: "/usr/sbin/bareos-fd --test-config"
|
|
changed_when: false
|
|
|
|
- name: Restart bareos-filedaemon
|
|
ansible.builtin.service:
|
|
name: "{{ bareos_fd_service }}"
|
|
state: restarted
|