Replace mode with octal renaming to mode.

Closes GH-6176

This way for mode we return in an octal format which is immediately usable compared to transforming it later.
reviewable/pr18780/r1
Richard C Isaacson 11 years ago
parent 6ffeaa7ddd
commit 1e2eb88926

@ -99,8 +99,7 @@ def main():
# back to ansible
d = {
'exists' : True,
'mode' : S_IMODE(mode),
'octal' : "%04o" % S_IMODE(mode),
'mode' : "%04o" % S_IMODE(mode),
'isdir' : S_ISDIR(mode),
'ischr' : S_ISCHR(mode),
'isblk' : S_ISBLK(mode),

Loading…
Cancel
Save