summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/reboot/tasks/test_reboot_command.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/reboot/tasks/test_reboot_command.yml')
-rw-r--r--test/integration/targets/reboot/tasks/test_reboot_command.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/integration/targets/reboot/tasks/test_reboot_command.yml b/test/integration/targets/reboot/tasks/test_reboot_command.yml
new file mode 100644
index 0000000..779d380
--- /dev/null
+++ b/test/integration/targets/reboot/tasks/test_reboot_command.yml
@@ -0,0 +1,22 @@
+- 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