9 lines
208 B
YAML
9 lines
208 B
YAML
|
#!/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
|