On 8/28/2014 1:59 PM, Michael DeHaan wrote:
> Sorry, perhaps addressed on devel only. I hate to be that annoying, but
> it would save me time if you could let me know if you see the same there.
Still there. I'll file a bug.
% bin/ansible --version
ansible 1.8 (devel a0635ebb0d) last updated 2014/09/01 16:52:36 (GMT -700)
% bin/ansible all -m file -a 'path=/tmp/jon state=touch mode=0644
owner=root'
localhost | FAILED >> {
"failed": true,
"gid": 1000,
"group": "jonf",
"mode": "0664",
"msg": "chown failed",
"owner": "jonf",
"path": "/tmp/jon",
"size": 0,
"state": "file",
"uid": 1000
}
% ls -l /tmp/jon
-rw-rw-r-- 1 jonf jonf 0 Sep 1 16:54 /tmp/jon
Jon