mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
remove verbose option on digest call
This commit is contained in:
parent
68e16773ae
commit
54b7f59416
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…
Reference in a new issue