mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-16 10:00:39 +00:00
241 lines
8.0 KiB
Python
241 lines
8.0 KiB
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Copyright: (c) 2017, Ansible Project
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
# this is a windows documentation stub. actual code lives in the .ps1
|
||
|
# file of the same name
|
||
|
|
||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||
|
'status': ['stableinterface'],
|
||
|
'supported_by': 'core'}
|
||
|
|
||
|
DOCUMENTATION = r'''
|
||
|
---
|
||
|
module: win_stat
|
||
|
version_added: "1.7"
|
||
|
short_description: Get information about Windows files
|
||
|
description:
|
||
|
- Returns information about a Windows file.
|
||
|
- For non-Windows targets, use the M(stat) module instead.
|
||
|
options:
|
||
|
path:
|
||
|
description:
|
||
|
- The full path of the file/object to get the facts of; both forward and
|
||
|
back slashes are accepted.
|
||
|
required: yes
|
||
|
type: path
|
||
|
get_md5:
|
||
|
description:
|
||
|
- Whether to return the checksum sum of the file. Between Ansible 1.9
|
||
|
and 2.2 this is no longer an MD5, but a SHA1 instead. As of Ansible
|
||
|
2.3 this is back to an MD5. Will return None if host is unable to
|
||
|
use specified algorithm.
|
||
|
- The default of this option changed from C(yes) to C(no) in Ansible 2.5
|
||
|
and will be removed altogether in Ansible 2.9.
|
||
|
- Use C(get_checksum=true) with C(checksum_algorithm=md5) to return an
|
||
|
md5 hash under the C(checksum) return value.
|
||
|
type: bool
|
||
|
default: 'no'
|
||
|
get_checksum:
|
||
|
description:
|
||
|
- Whether to return a checksum of the file (default sha1)
|
||
|
type: bool
|
||
|
default: 'yes'
|
||
|
version_added: "2.1"
|
||
|
checksum_algorithm:
|
||
|
description:
|
||
|
- Algorithm to determine checksum of file. Will throw an error if
|
||
|
the host is unable to use specified algorithm.
|
||
|
default: sha1
|
||
|
choices: [ md5, sha1, sha256, sha384, sha512 ]
|
||
|
version_added: "2.3"
|
||
|
notes:
|
||
|
- For non-Windows targets, use the M(stat) module instead.
|
||
|
author:
|
||
|
- Chris Church (@cchurch)
|
||
|
'''
|
||
|
|
||
|
EXAMPLES = r'''
|
||
|
- name: Obtain information about a file
|
||
|
win_stat:
|
||
|
path: C:\foo.ini
|
||
|
register: file_info
|
||
|
|
||
|
- name: Obtain information about a folder
|
||
|
win_stat:
|
||
|
path: C:\bar
|
||
|
register: folder_info
|
||
|
|
||
|
- name: Get MD5 checksum of a file
|
||
|
win_stat:
|
||
|
path: C:\foo.ini
|
||
|
get_checksum: yes
|
||
|
checksum_algorithm: md5
|
||
|
register: md5_checksum
|
||
|
|
||
|
- debug:
|
||
|
var: md5_checksum.stat.checksum
|
||
|
|
||
|
- name: Get SHA1 checksum of file
|
||
|
win_stat:
|
||
|
path: C:\foo.ini
|
||
|
get_checksum: yes
|
||
|
register: sha1_checksum
|
||
|
|
||
|
- debug:
|
||
|
var: sha1_checksum.stat.checksum
|
||
|
|
||
|
- name: Get SHA256 checksum of file
|
||
|
win_stat:
|
||
|
path: C:\foo.ini
|
||
|
get_checksum: yes
|
||
|
checksum_algorithm: sha256
|
||
|
register: sha256_checksum
|
||
|
|
||
|
- debug:
|
||
|
var: sha256_checksum.stat.checksum
|
||
|
'''
|
||
|
|
||
|
RETURN = r'''
|
||
|
changed:
|
||
|
description: Whether anything was changed
|
||
|
returned: always
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
stat:
|
||
|
description: dictionary containing all the stat data
|
||
|
returned: success
|
||
|
type: complex
|
||
|
contains:
|
||
|
attributes:
|
||
|
description: Attributes of the file at path in raw form
|
||
|
returned: success, path exists
|
||
|
type: string
|
||
|
sample: "Archive, Hidden"
|
||
|
checksum:
|
||
|
description: The checksum of a file based on checksum_algorithm specified
|
||
|
returned: success, path exist, path is a file, get_checksum == True
|
||
|
checksum_algorithm specified is supported
|
||
|
type: string
|
||
|
sample: 09cb79e8fc7453c84a07f644e441fd81623b7f98
|
||
|
creationtime:
|
||
|
description: The create time of the file represented in seconds since epoch
|
||
|
returned: success, path exists
|
||
|
type: float
|
||
|
sample: 1477984205.15
|
||
|
exists:
|
||
|
description: If the path exists or not
|
||
|
returned: success
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
extension:
|
||
|
description: The extension of the file at path
|
||
|
returned: success, path exists, path is a file
|
||
|
type: string
|
||
|
sample: ".ps1"
|
||
|
filename:
|
||
|
description: The name of the file (without path)
|
||
|
returned: success, path exists, path is a file
|
||
|
type: string
|
||
|
sammple: foo.ini
|
||
|
hlnk_targets:
|
||
|
description: List of other files pointing to the same file (hard links), excludes the current file
|
||
|
returned: success, path exists
|
||
|
type: list
|
||
|
sample:
|
||
|
- C:\temp\file.txt
|
||
|
- C:\Windows\update.log
|
||
|
isarchive:
|
||
|
description: If the path is ready for archiving or not
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
isdir:
|
||
|
description: If the path is a directory or not
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
ishidden:
|
||
|
description: If the path is hidden or not
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
isjunction:
|
||
|
description: If the path is a junction point or not
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
islnk:
|
||
|
description: If the path is a symbolic link or not
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
isreadonly:
|
||
|
description: If the path is read only or not
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
isreg:
|
||
|
description: If the path is a regular file
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
isshared:
|
||
|
description: If the path is shared or not
|
||
|
returned: success, path exists
|
||
|
type: boolean
|
||
|
sample: True
|
||
|
lastaccesstime:
|
||
|
description: The last access time of the file represented in seconds since epoch
|
||
|
returned: success, path exists
|
||
|
type: float
|
||
|
sample: 1477984205.15
|
||
|
lastwritetime:
|
||
|
description: The last modification time of the file represented in seconds since epoch
|
||
|
returned: success, path exists
|
||
|
type: float
|
||
|
sample: 1477984205.15
|
||
|
lnk_source:
|
||
|
description: Target of the symlink normalized for the remote filesystem
|
||
|
returned: success, path exists and the path is a symbolic link or junction point
|
||
|
type: string
|
||
|
sample: C:\temp\link
|
||
|
lnk_target:
|
||
|
description: Target of the symlink. Note that relative paths remain relative
|
||
|
returned: success, path exists and the path is a symbolic link or junction point
|
||
|
type: string
|
||
|
sample: ..\link
|
||
|
md5:
|
||
|
description: The MD5 checksum of a file (Between Ansible 1.9 and 2.2 this was returned as a SHA1 hash), will be removed in 2.9
|
||
|
returned: success, path exist, path is a file, get_md5 == True
|
||
|
type: string
|
||
|
sample: 09cb79e8fc7453c84a07f644e441fd81623b7f98
|
||
|
nlink:
|
||
|
description: Number of links to the file (hard links)
|
||
|
returned: success, path exists
|
||
|
type: int
|
||
|
sample: 1
|
||
|
owner:
|
||
|
description: The owner of the file
|
||
|
returned: success, path exists
|
||
|
type: string
|
||
|
sample: BUILTIN\Administrators
|
||
|
path:
|
||
|
description: The full absolute path to the file
|
||
|
returned: success, path exists, file exists
|
||
|
type: string
|
||
|
sample: C:\foo.ini
|
||
|
sharename:
|
||
|
description: The name of share if folder is shared
|
||
|
returned: success, path exists, file is a directory and isshared == True
|
||
|
type: string
|
||
|
sample: file-share
|
||
|
size:
|
||
|
description: The size in bytes of a file or folder
|
||
|
returned: success, path exists, file is not a link
|
||
|
type: int
|
||
|
sample: 1024
|
||
|
'''
|