Add get_checksum option to win_stat to work with new use of the stat module for checksumming

This commit is contained in:
Matt Martz 2016-02-29 14:14:01 -06:00 committed by Matt Clay
commit b85d3f32da
2 changed files with 11 additions and 2 deletions

View file

@ -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)"
'''