Fixed stat of symlinked dirs

reviewable/pr18780/r1
Bruce Pennypacker 12 years ago
parent 8f19762748
commit 88d9145235

@ -91,6 +91,11 @@ def main():
'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)
# this is magic, see lib/ansible/module_common.py

Loading…
Cancel
Save