mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-05 21:54:22 -07:00
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.
This commit is contained in:
parent
cca7fd3c0c
commit
809b714bfc
1 changed files with 1 additions and 2 deletions
|
@ -99,8 +99,7 @@ def main():
|
||||||
# back to ansible
|
# back to ansible
|
||||||
d = {
|
d = {
|
||||||
'exists' : True,
|
'exists' : True,
|
||||||
'mode' : S_IMODE(mode),
|
'mode' : "%04o" % S_IMODE(mode),
|
||||||
'octal' : "%04o" % S_IMODE(mode),
|
|
||||||
'isdir' : S_ISDIR(mode),
|
'isdir' : S_ISDIR(mode),
|
||||||
'ischr' : S_ISCHR(mode),
|
'ischr' : S_ISCHR(mode),
|
||||||
'isblk' : S_ISBLK(mode),
|
'isblk' : S_ISBLK(mode),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue