summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/runme.sh
diff options
context:
space:
mode:
authorMartin Krizek <martin.krizek@gmail.com>2024-07-04 09:33:37 +0200
committerGitHub <noreply@github.com>2024-07-04 09:33:37 +0200
commit775bc1110ea245dd8c9be8b92c91b3d748a27ab2 (patch)
tree9948e727007ad5e2db6c7ebde561a12e0004d078 /test/integration/targets/handlers/runme.sh
parentFix incorrect rc when executing end_host in rescue (#83522) (diff)
downloadansible-775bc1110ea245dd8c9be8b92c91b3d748a27ab2.tar.xz
ansible-775bc1110ea245dd8c9be8b92c91b3d748a27ab2.zip
linear: fix included handlers executing in lockstep (#83209)
Fixes #83019
Diffstat (limited to '')
-rwxr-xr-xtest/integration/targets/handlers/runme.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/targets/handlers/runme.sh b/test/integration/targets/handlers/runme.sh
index 9250fc8fb3..6b4e8fb3b3 100755
--- a/test/integration/targets/handlers/runme.sh
+++ b/test/integration/targets/handlers/runme.sh
@@ -219,3 +219,6 @@ ansible-playbook 82241.yml -i inventory.handlers "$@" 2>&1 | tee out.txt
ansible-playbook handlers_lockstep_82307.yml -i inventory.handlers "$@" 2>&1 | tee out.txt
[ "$(grep out.txt -ce 'TASK \[handler2\]')" = "0" ]
+
+ansible-playbook handlers_lockstep_83019.yml -i inventory.handlers "$@" 2>&1 | tee out.txt
+[ "$(grep out.txt -ce 'TASK \[handler1\]')" = "0" ]