如何使用标签在 post_tasks 中进行调试

如何使用标签在 post_tasks 中进行调试

站点.yml:

---
- hosts: localhost
  connection: local
  post_tasks:
    - name: "List dir"
      tags: always
      shell: "ls -la"
      register: logs_result
    - debug:
        var: logs_result.stdout_lines

运行它:

ansible-playbook -t abc site.yml

看不到输出。如何让它debug始终有效,无论标签是什么?

答案1

添加tags: always调试任务应该就可以了。

    - debug:
        var: logs_result.stdout_lines
      tags: always

相关内容