summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda3
1 files changed, 2 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 1c8e55133..9b8140af6 100755
--- a/anaconda
+++ b/anaconda
@@ -579,7 +579,8 @@ if rhpl.getArch() == "s390":
# setup links required for all install types
for i in ( "services", "protocol", "nsswitch.conf", "joe", "selinux", "libuser.conf"):
try:
- os.symlink ("../mnt/runtime/etc/" + i, "/etc/" + i)
+ if os.path.exists("/mnt/runtime/etc/" + i):
+ os.symlink ("../mnt/runtime/etc/" + i, "/etc/" + i)
except:
pass