Fetch error: "unable to calculate the md5 sum of the remote file"
472 views
Skip to first unread message
Kevin Lasenby
unread,
Jan 14, 2015, 3:08:38 PM1/14/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com
When trying to fetch a file from a Synology NAS to my Ansible server (Ubuntu, using SSH keys) I get the error "unable to calculate the md5 sum of the remote file".
I don't get this error fetching from any other server and can't find any information on what's causing it. Any ideas?
Kevin
Toshio Kuratomi
unread,
Jan 14, 2015, 6:53:36 PM1/14/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com
In ansible 1.7.x and below, ansible looked for a program on the remote
machine to do an md5sum of the file for integrity checking. As of
1.8.0, ansible uses python itself to create a sha1 hash for integrity
checking. What this means is that on ansible-1.7.x and older you
needed to have /usr/bin/md5sum, /usr/bin/md5, or another of a few
known programs in order to use many file related modules. With
current ansible you'll only need python installed.