summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xanaconda14
2 files changed, 11 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index e4922a0ef..c5f691b1c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-11 Chris Lumens <clumens@redhat.com>
+
+ * anaconda: Make some symlinks earlier.
+
2006-04-10 David Cantrell <dcantrell@redhat.com>
* scripts/mk-rescueimage.i386: Do not call sys.exit(0) from usage().
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
#