ansible/handlers/main.yml

9 lines
240 B
YAML
Raw Normal View History

2020-10-17 01:00:06 -05:00
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
- name: restart cron
2022-06-16 23:45:29 -05:00
ansible.builtin.service: name=cron state=restarted
2020-10-17 01:00:06 -05:00
become: yes
- name: regen initramfs
2022-06-16 23:45:29 -05:00
ansible.builtin.command: /usr/sbin/update-initramfs -c -k all
become: yes