mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix bad number assignment in aliases
This commit is contained in:
parent
0b2caab432
commit
93a2734ae8
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ def __write_aliases_file(lines):
|
|||
os.chmod(out.name, stat.S_IMODE(st.st_mode))
|
||||
os.chown(out.name, st.st_uid, st.st_gid)
|
||||
else:
|
||||
os.chmod(out.name, 0o644)
|
||||
os.chmod(out.name, 0644)
|
||||
os.chown(out.name, 0, 0)
|
||||
|
||||
for (line_alias, line_target, line_comment) in lines:
|
||||
|
|
Loading…
Add table
Reference in a new issue