I have Ansible role, for example
--- - name: Deploy app1 include: deploy-app1.yml when: \'deploy_project == \"{{app1}}\"\' - name: Deploy app2 include
Since ansible 2.4, a callback plugin name full_skip was added to suppress the skipping of task names and skipping keyword in the ansible output. You can try the below ansible configuration:
[defaults] stdout_callback = full_skip