From acec77ca5ba1be97c107a3db7ed7705c1110ccce Mon Sep 17 00:00:00 2001 From: Salt Date: Sat, 23 Jan 2021 18:45:32 -0600 Subject: [PATCH] Add handlers back to common role --- roles/common/handlers/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 roles/common/handlers/main.yml 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