fix hashing when path is symlink
This commit is contained in:
parent
0b585ec4fd
commit
631a10745d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue