commit
efaaaa6c79
|
@ -28,6 +28,12 @@ options:
|
||||||
required: true
|
required: true
|
||||||
default: null
|
default: null
|
||||||
aliases: []
|
aliases: []
|
||||||
|
follow:
|
||||||
|
description:
|
||||||
|
- Whether to follow symlinks
|
||||||
|
required: false
|
||||||
|
default: no
|
||||||
|
aliases: []
|
||||||
author: Bruce Pennypacker
|
author: Bruce Pennypacker
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -49,13 +55,18 @@ def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
path = dict(required=True),
|
path = dict(required=True),
|
||||||
|
follow = dict(default='no', type='bool')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
path = module.params.get('path')
|
path = module.params.get('path')
|
||||||
|
follow = module.params.get('follow')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
if follow:
|
||||||
st = os.stat(path)
|
st = os.stat(path)
|
||||||
|
else:
|
||||||
|
st = os.lstat(path)
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
if e.errno == errno.ENOENT:
|
if e.errno == errno.ENOENT:
|
||||||
d = { 'exists' : False }
|
d = { 'exists' : False }
|
||||||
|
@ -98,9 +109,8 @@ def main():
|
||||||
'isgid' : bool(mode & stat.S_ISGID),
|
'isgid' : bool(mode & stat.S_ISGID),
|
||||||
}
|
}
|
||||||
|
|
||||||
if S_ISDIR(mode) and os.path.islink(path):
|
if S_ISLNK(mode):
|
||||||
d['isdir'] = False
|
d['lnk_source'] = os.path.realpath(path)
|
||||||
d['islnk'] = True
|
|
||||||
|
|
||||||
if S_ISREG(mode):
|
if S_ISREG(mode):
|
||||||
d['md5'] = module.md5(path)
|
d['md5'] = module.md5(path)
|
||||||
|
|
Loading…
Reference in New Issue