summaryrefslogtreecommitdiff
path: root/test/integration/targets/handler_race
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2020-08-07 14:28:10 -0500
committerGitHub <noreply@github.com>2020-08-07 14:28:10 -0500
commit7c60dadb9a3832dee0014113a337bc10fa1088c0 (patch)
treeb60f7cc1c219cf3eb13c0229ade2b05e7f934439 /test/integration/targets/handler_race
parent56748a80609c5d402a8cf72c0a4396f87282957f (diff)
downloadansible-7c60dadb9a3832dee0014113a337bc10fa1088c0.tar.gz
Updates to Integration tests to pass against Alpine (#70946)
* Start of alpine testing * More updates * Add forgotten file * remove debug * Add alpine3 * equal * group 4 * group 4 * group 5 * Try to decrease test length * libuser only available in testing * Remove debug * Make loops target work on hosts without gnu date * Enable alpine testing * ci_complete * Don't specify uid for creating test user * ci_complete * Re-sort docker completion * use newer container image * ci_complete * fix indentation Co-authored-by: Matt Clay <matt@mystile.com> Co-authored-by: Matt Clay <matt@mystile.com>
Diffstat (limited to 'test/integration/targets/handler_race')
-rw-r--r--test/integration/targets/handler_race/roles/random_sleep/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/handler_race/roles/random_sleep/tasks/main.yml b/test/integration/targets/handler_race/roles/random_sleep/tasks/main.yml
index 607318bbd5..0bc4c382b6 100644
--- a/test/integration/targets/handler_race/roles/random_sleep/tasks/main.yml
+++ b/test/integration/targets/handler_race/roles/random_sleep/tasks/main.yml
@@ -2,7 +2,7 @@
# tasks file for random_sleep
- name: Generate sleep time
set_fact:
- sleep_time: "{{ 60 | random }}"
+ sleep_time: "{{ 30 | random }}"
- name: Do random sleep
shell: sleep "{{ sleep_time }}"