summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-04-11 16:46:59 +0000
committerChris Lumens <clumens@redhat.com>2006-04-11 16:46:59 +0000
commit2413f486a9bac357c9aa19559cd33a6fd900f07a (patch)
treeefcf89a3fe3102bf16000ffadf42d882949aad75 /anaconda
parent1da724b34d49258de754a2fa68bc1719d077848d (diff)
downloadanaconda-2413f486a9bac357c9aa19559cd33a6fd900f07a.tar.gz
anaconda-2413f486a9bac357c9aa19559cd33a6fd900f07a.tar.xz
anaconda-2413f486a9bac357c9aa19559cd33a6fd900f07a.zip
Make some symlinks earlier.
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda14
1 files changed, 7 insertions, 7 deletions
diff --git a/anaconda b/anaconda
index b30c9aa52..956df3ed8 100755
--- a/anaconda
+++ b/anaconda
@@ -576,6 +576,13 @@ if opts.vncconnect:
if rhpl.getArch() == "s390":
opts.isHeadless = True
+# 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)
+ except:
+ pass
+
#
# must specify install, rescue mode
#
@@ -917,13 +924,6 @@ if opts.display_mode == 'g' and flags.usevnc:
os.kill(child, signal.SIGCONT)
-# setup links required for all install types
-for i in ( "services", "protocol", "nsswitch.conf", "joe", "selinux"):
- try:
- os.symlink ("../mnt/runtime/etc/" + i, "/etc/" + i)
- except:
- pass
-
#
# setup links required by graphical mode if installing and verify display mode
#