ansible/roles/common/handlers/main.yml

9 lines
240 B
YAML
Raw Normal View History

2021-01-23 18:45:32 -06: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
2021-01-23 18:45:32 -06:00
become: yes
- name: regen initramfs
2022-06-16 23:45:29 -05:00
ansible.builtin.command: /usr/sbin/update-initramfs -c -k all
2021-01-23 18:45:32 -06:00
become: yes