diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | anaconda | 14 |
2 files changed, 11 insertions, 7 deletions
@@ -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(). @@ -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 # |