Ansible

如何使用標籤在 post_tasks 中進行調試

  • July 27, 2021

網站.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無論標籤如何,如何始終工作?

添加tags: always到調試任務應該可以工作。

   - debug:
       var: logs_result.stdout_lines
     tags: always

引用自:https://serverfault.com/questions/1070776