ansible - check if file exists on *local* machine
I have a situation where I need to check the status of a file on the local machine (the one where I will call ansible-playbook ... ). If a file that is created by the user exists, it needs to be copied over to the remote host(s). If it doesn't exist, then none of the remote hosts need it. I know I've done things like : - name: Check for ~/.blah/config stat: path=/home/ubuntu/.blah/config register: stat_blah_config - name: Do something with blah config shell: ~/do_something_with_config.sh when: stat_aws_config.stat.exists == true But that will only work if the file exists remotely. Is there a