mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-04 23:44:00 -07:00
Add get_checksum option to win_stat to work with new use of the stat module for checksumming
This commit is contained in:
parent
9551e51607
commit
b85d3f32da
2 changed files with 11 additions and 2 deletions
|
@ -34,10 +34,18 @@ options:
|
|||
aliases: []
|
||||
get_md5:
|
||||
description:
|
||||
- Whether to return the md5 sum of the file
|
||||
- Whether to return the checksum sum of the file. As of Ansible 1.9 this
|
||||
is no longer a MD5, but a SHA1 instead.
|
||||
required: false
|
||||
default: yes
|
||||
aliases: []
|
||||
get_checksum:
|
||||
description:
|
||||
- Whether to return a checksum of the file
|
||||
(only sha1 currently supported)
|
||||
required: false
|
||||
default: yes
|
||||
version_added: "2.1"
|
||||
author: "Chris Church (@cchurch)"
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue