fix hashing when path is symlink

This commit is contained in:
Brian Coca 2017-04-05 18:40:29 -04:00 committed by Brian Coca
parent 0b585ec4fd
commit 631a10745d

View file

@ -2051,7 +2051,7 @@ class AnsibleModule(object):
(filename, algorithm, ', '.join(AVAILABLE_HASH_ALGORITHMS)))
blocksize = 64 * 1024
infile = open(filename, 'rb')
infile = open(os.path.realpath(filename), 'rb')
block = infile.read(blocksize)
while block:
digest_method.update(block)