summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handler_race/roles/more_sleep/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/handler_race/roles/more_sleep/tasks/main.yml')
-rw-r--r--test/integration/targets/handler_race/roles/more_sleep/tasks/main.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/integration/targets/handler_race/roles/more_sleep/tasks/main.yml b/test/integration/targets/handler_race/roles/more_sleep/tasks/main.yml
new file mode 100644
index 0000000..aefbce2
--- /dev/null
+++ b/test/integration/targets/handler_race/roles/more_sleep/tasks/main.yml
@@ -0,0 +1,8 @@
+---
+# tasks file for more_sleep
+- name: Random more sleep
+ set_fact:
+ more_sleep_time: "{{ 5 | random }}"
+
+- name: Moar sleep
+ shell: sleep "{{ more_sleep_time }}"