aboutsummaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-04 12:06:49 +0100
committerGravatar Joe Banks <[email protected]>2024-08-04 12:07:32 +0100
commite055d16048c6c0569f44e79b8911b91eb6fcc43e (patch)
tree8c382ba7f802a600ea7e838e0a15c58295b7e9e4 /ansible
parentsasl: Add SASL installation and setup tasks (diff)
sasl: Add handlers for saslauthd
Diffstat (limited to 'ansible')
-rw-r--r--ansible/roles/sasl/handlers/main.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/ansible/roles/sasl/handlers/main.yml b/ansible/roles/sasl/handlers/main.yml
new file mode 100644
index 0000000..9a2c71d
--- /dev/null
+++ b/ansible/roles/sasl/handlers/main.yml
@@ -0,0 +1,10 @@
+---
+- name: Reload SASL
+ service:
+ name: saslauthd
+ state: reloaded
+
+- name: Restart SASL
+ service:
+ name: saslauthd
+ state: restarted