Created
March 18, 2014 19:01
-
-
Save jctanner/9627041 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEVEL | |
jtanner@u1204:~/issues/jlaska-awx-install-fail$ ansible -i inventory localhost -m file -a "path=/tmp/newfoo state=file" | |
localhost | FAILED >> { | |
"failed": true, | |
"msg": "file (/tmp/newfoo) is absent, cannot continue", | |
"path": "/tmp/newfoo", | |
"state": "absent" | |
} | |
1.4.5 | |
jtanner@u1204:~/issues/jlaska-awx-install-fail$ ansible -i inventory localhost -m file -a "path=/tmp/newfoo state=file" | |
localhost | FAILED >> { | |
"failed": true, | |
"msg": "file (/tmp/newfoo) does not exist, use copy or template module to create", | |
"path": "/tmp/newfoo", | |
"state": "absent" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment