mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-29 04:19:15 -07:00
Merge pull request #1601 from romeotheriault/fix-remote-md5-for-solaris10
remove verbose option on digest call
This commit is contained in:
commit
753ee0b88d
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ class Runner(object):
|
|||
md5s = [
|
||||
"(/usr/bin/md5sum %s 2>/dev/null)" % path,
|
||||
"(/sbin/md5sum -q %s 2>/dev/null)" % path,
|
||||
"(/usr/bin/digest -a md5 -v %s 2>/dev/null)" % path
|
||||
"(/usr/bin/digest -a md5 %s 2>/dev/null)" % path
|
||||
]
|
||||
|
||||
cmd = " || ".join(md5s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue