10 lines
172 B
YAML
10 lines
172 B
YAML
---
|
|
- name: Reboot Vm
|
|
hosts: all
|
|
become: yes
|
|
tasks:
|
|
- name: Redémarrer la machine
|
|
reboot:
|
|
reboot_timeout: 300
|
|
when: apk_upgradable.stdout != ""
|