summaryrefslogtreecommitdiffstats
path: root/src/virtBootstrap/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/virtBootstrap/utils.py')
-rw-r--r--src/virtBootstrap/utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/virtBootstrap/utils.py b/src/virtBootstrap/utils.py
index ea650fb..be9133c 100644
--- a/src/virtBootstrap/utils.py
+++ b/src/virtBootstrap/utils.py
@@ -387,8 +387,7 @@ def set_root_password_in_rootfs(rootfs, password):
shadow_file_permissions = os.stat(shadow_file)[0]
# Set read-write permissions to shadow file
- # 438 = 0110110110 = -rw-rw-rw-
- os.chmod(shadow_file, 438)
+ os.chmod(shadow_file, 0o666)
try:
with open(shadow_file) as orig_file:
shadow_content = orig_file.read().split('\n')