diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-06-03 21:13:10 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:54:20 +0200 |
commit | 00d6d904dc26592553ba93710c205603757e3faf (patch) | |
tree | 09ce9d1f3257da4303362317b04a596f4e0df741 /roles/bacula-sd/handlers | |
parent | ab03c7c75d91667dbc30f9ce1f66fe343fb9f93b (diff) |
Configure Bacula File Daemon / Storage Daemon / Director.
Using client-side data signing/encryption and wrapping inter-host
communication into stunnel.
Diffstat (limited to 'roles/bacula-sd/handlers')
-rw-r--r-- | roles/bacula-sd/handlers/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/bacula-sd/handlers/main.yml b/roles/bacula-sd/handlers/main.yml new file mode 100644 index 0000000..ce391d2 --- /dev/null +++ b/roles/bacula-sd/handlers/main.yml @@ -0,0 +1,9 @@ +--- +- name: systemctl daemon-reload + command: /bin/systemctl daemon-reload + +- name: Restart stunnel + service: name=stunnel4 pattern=/usr/bin/stunnel4 state=restarted + +- name: Restart bacula-sd + service: name=bacula-sd state=restarted |