diff --git a/roles/common/handlers/main.yml b/roles/common/handlers/main.yml new file mode 100644 index 0000000..770cb08 --- /dev/null +++ b/roles/common/handlers/main.yml @@ -0,0 +1,8 @@ +#!/usr/bin/env ansible-playbook +# vim:ft=ansible: +- name: restart cron + service: name=cron state=restarted + become: yes +- name: regen initramfs + command: /usr/sbin/update-initramfs -c -k all + become: yes