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
|
2020-11-08 06:10:12 -06:00
|
|
|
- name: regen initramfs
|
2022-06-16 23:45:29 -05:00
|
|
|
ansible.builtin.command: /usr/sbin/update-initramfs -c -k all
|
2020-11-08 06:10:12 -06:00
|
|
|
become: yes
|