mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-30 20:23:49 +00:00
inventory_docker_swarm test - Remove exit code from trap (#391)
Setting the exit code in a trap overrides the exit code that caused the trap to be called. This means if the test failed and called the trap, the test will exit with 0 rather than the failure exit code.
This commit is contained in:
@@ -8,7 +8,6 @@ cleanup() {
|
|||||||
echo "Cleanup"
|
echo "Cleanup"
|
||||||
ansible-playbook playbooks/swarm_cleanup.yml
|
ansible-playbook playbooks/swarm_cleanup.yml
|
||||||
echo "Done"
|
echo "Done"
|
||||||
exit 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
trap cleanup INT TERM EXIT
|
trap cleanup INT TERM EXIT
|
||||||
|
|||||||
Reference in New Issue
Block a user