]> git.phdru.name Git - ansible.git/blob - playbooks/ansible/list-tmp.yml
Fix(ansible/list-tmp): `ls` doesn't change anything
[ansible.git] / playbooks / ansible / list-tmp.yml
1 - name: List ~/.ansible/tmp
2   hosts: "{{ hosts | default('all') }}"
3   gather_facts: false
4   tasks:
5     - name: List ~/.ansible/tmp
6       command: "ls -lAF ~/.ansible/tmp"
7       register: ls
8       changed_when: false
9     - debug:
10         msg: "{{ ls.stdout }}"