Skip to content

Commit

Permalink
Merge pull request #1549 from dmach/conf-fix-override-check
Browse files Browse the repository at this point in the history
Several fixes in osc.conf
  • Loading branch information
dmach authored Apr 26, 2024
2 parents 8b69081 + 2bf7e71 commit f908092
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion osc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1869,7 +1869,8 @@ def get_config(override_conffile=None,

# make sure oscrc is not world readable, it may contain a password
conffile_stat = os.stat(conffile)
if conffile_stat.st_mode != 0o600:
# applying 0o7777 mask because we want to ignore the file type bits
if conffile_stat.st_mode & 0o7777 != 0o600:
try:
os.chmod(conffile, 0o600)
except OSError as e:
Expand Down Expand Up @@ -1974,6 +1975,9 @@ def get_config(override_conffile=None,
# priority: env, overrides, config
if env_key in os.environ:
value = os.environ[env_key]
# remove any matching records from overrides because they are checked for emptiness later
overrides.pop(name, None)
overrides.pop(ini_key, None)
elif name in overrides:
value = overrides.pop(name)
elif ini_key in overrides:
Expand Down

0 comments on commit f908092

Please sign in to comment.