mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixing umask to we can set files as executable.
This commit is contained in:
parent
4949bf3ff3
commit
68549f3496
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ def _git_run(command, cwd=None, user=None, password=None, identity=None,
|
|||
# force it into a list
|
||||
identity = [identity]
|
||||
|
||||
with salt.utils.files.set_umask(0o177):
|
||||
with salt.utils.files.set_umask(0o077):
|
||||
# try each of the identities, independently
|
||||
tmp_identity_file = None
|
||||
for id_file in identity:
|
||||
|
|
Loading…
Add table
Reference in a new issue