Fixed stat of symlinked dirs
This commit is contained in:
parent
8f19762748
commit
88d9145235
1 changed files with 5 additions and 0 deletions
|
@ -91,6 +91,11 @@ def main():
|
||||||
'isgid' : bool(mode & stat.S_ISGID),
|
'isgid' : bool(mode & stat.S_ISGID),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if S_ISDIR(mode) and os.path.islink(path):
|
||||||
|
d['isdir'] = False
|
||||||
|
d['islnk'] = True
|
||||||
|
|
||||||
|
|
||||||
module.exit_json(changed=False, stat=d)
|
module.exit_json(changed=False, stat=d)
|
||||||
|
|
||||||
# this is magic, see lib/ansible/module_common.py
|
# this is magic, see lib/ansible/module_common.py
|
||||||
|
|
Loading…
Reference in a new issue