summaryrefslogtreecommitdiffstats
path: root/pyanaconda/simpleconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyanaconda/simpleconfig.py')
-rw-r--r--pyanaconda/simpleconfig.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/pyanaconda/simpleconfig.py b/pyanaconda/simpleconfig.py
index db0dea22a..9fb128995 100644
--- a/pyanaconda/simpleconfig.py
+++ b/pyanaconda/simpleconfig.py
@@ -95,9 +95,12 @@ class SimpleConfigFile(object):
# Move the temporary file (with 0600 permissions) over the top of the
# original and preserve the original's permissions
filename = os.path.realpath(filename)
- m = os.stat(filename)
+ if os.path.exists(filename):
+ m = os.stat(filename).st_mode
+ else:
+ m = int('0100644', 8)
shutil.move(tmpf.name, filename)
- os.chmod(filename, m.st_mode)
+ os.chmod(filename, m)
def set(self, *args):
for key, value in args: