Copying files with a mode 400 seems to set to 620 instead

59 views
Skip to first unread message

gary.r...@isobar.com

unread,
Nov 20, 2015, 2:51:55 PM11/20/15
to Ansible Project
Hey,

This is potentially something that is frowned upon, but I'm trying to add SSH keys to a server via Ansible so that the destination server can use these keys later for other operations.

So I am trying to do the following:

 - name: add default ssh keys
   become
: true
     copy
:
       src
: ./.ssh/
       dest
: ~/.ssh
       mode
: 400
       force
: true


I would expect to see the keys added and set to read only:

 -r--------


However, when looking at the keys on the destination server I'm seeing this:

 -rw--w----


Is there any particular reason why they do not have the permissions I'm asking?
Or is there a way I can upload them and then update all keys in that folder to be read only?

Thanks,
Gary

Matt Martz

unread,
Nov 20, 2015, 4:45:49 PM11/20/15
to ansible...@googlegroups.com
Check out the following comment from github:


Short answer is that you need to use 0400 instead of 400 so that Ansible knows you are supplying an octal mode as opposed to decimal.
--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/a44a9a07-7c36-4aad-abc7-055a35d3e754%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--
Matt Martz
@sivel
sivel.net

Reply all
Reply to author
Forward
0 new messages