In my post ‘do not display skipping task in ansible‘, I mentioned that the stdout_callback = full_skip configuration can suppress the skipping task names in the ansible console output. However, after I upgrade ansible to 2.7.6, I find that there are duplicated… Read More
do not display skipping tasks in ansible
Recently one of our developers complained the skipping tasks displayed in the ansible output. She insisted that the skipping tasks names and the skipping keyword should not be displayed, because these stuffs may confuse customers. I agree with her. Without… Read More
avoid ignored error message in ansible
In ansbile playbook, the below style can be used to check the result of a script or command, and give a meaningful message if the task fails. – name: check stack existance hosts: localhost any_errors_fatal: True tasks: – name: check… Read More