aboutsummaryrefslogtreecommitdiff
path: root/handlers
diff options
context:
space:
mode:
authorJulien Dessaux2019-07-16 12:04:53 +0200
committerJulien Dessaux2019-07-16 12:04:53 +0200
commit44ce83917219df1663658a572b21917eba326458 (patch)
tree9b2ed65b19a466b1b61ab4ddc93a458c8eb6d98c /handlers
parentAnsible best practices and committed forgotten handlers for borg role (diff)
downloadborg-ansible-role-44ce83917219df1663658a572b21917eba326458.tar.gz
borg-ansible-role-44ce83917219df1663658a572b21917eba326458.tar.bz2
borg-ansible-role-44ce83917219df1663658a572b21917eba326458.zip
Fixed borg cron not working on openbsd
Diffstat (limited to 'handlers')
-rw-r--r--handlers/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/handlers/main.yml b/handlers/main.yml
index fed8e07..9fbf697 100644
--- a/handlers/main.yml
+++ b/handlers/main.yml
@@ -1,6 +1,6 @@
---
-- name: reload openbsd cron
+- name: restart openbsd cron
service:
name: cron
- state: reloaded
+ state: restarted
...