18 lines
447 B
YAML
18 lines
447 B
YAML
---
|
|
# vars file for reboot
|
|
|
|
_reboot_requirements:
|
|
default: []
|
|
Debian: needrestart
|
|
CentOS: yum-utils
|
|
Fedora: dnf-utils
|
|
Ubuntu: needrestart
|
|
|
|
reboot_requirements: "{{ _reboot_requirements[ansible_distribution] | default(_reboot_requirements['default'] ) }}"
|
|
|
|
_reboot_command:
|
|
default: shutdown -r now {{ reboot_message }}
|
|
Alpine: reboot
|
|
|
|
reboot_command: "{{ _reboot_command[ansible_os_family] | default(_reboot_command['default'] ) }}"
|