mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
594 B
YAML
23 lines
594 B
YAML
4 years ago
|
- import_tasks: get_boot_time.yml
|
||
|
- name: Reboot with custom reboot_command using unqualified path
|
||
|
reboot:
|
||
|
reboot_command: reboot
|
||
|
register: reboot_result
|
||
|
- import_tasks: check_reboot.yml
|
||
|
|
||
|
|
||
|
- import_tasks: get_boot_time.yml
|
||
|
- name: Reboot with custom reboot_command using absolute path
|
||
|
reboot:
|
||
|
reboot_command: /sbin/reboot
|
||
|
register: reboot_result
|
||
|
- import_tasks: check_reboot.yml
|
||
|
|
||
|
|
||
|
- import_tasks: get_boot_time.yml
|
||
|
- name: Reboot with custom reboot_command with parameters
|
||
|
reboot:
|
||
|
reboot_command: shutdown -r now
|
||
|
register: reboot_result
|
||
|
- import_tasks: check_reboot.yml
|