summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xanaconda3
-rw-r--r--rescue.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e43119c9e..896bc9922 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,10 @@
* scripts/upd-instroot: include /etc/mke2fs.conf , because the builtin
defaults suck real bad. (#201645)
+ * anaconda (__main__): make /mnt/runtime symlink for mke2fs.conf
+
+ * rescue.py (runShell): ditto
+
2006-08-18 Peter Jones <pjones@redhat.com>
* iutil.py (makeDriveDeviceNodes): don't call isys.flushDriveDict()
diff --git a/anaconda b/anaconda
index 97dcfab0e..256fa97bd 100755
--- a/anaconda
+++ b/anaconda
@@ -677,7 +677,8 @@ if __name__ == "__main__":
users.createLuserConf(anaconda.rootPath)
# setup links required for all install types
- for i in ( "services", "protocol", "nsswitch.conf", "joe", "selinux"):
+ for i in ( "services", "protocols", "nsswitch.conf", "joe", "selinux",
+ "mke2fs.conf" ):
try:
if os.path.exists("/mnt/runtime/etc/" + i):
os.symlink ("../mnt/runtime/etc/" + i, "/etc/" + i)
diff --git a/rescue.py b/rescue.py
index f75b2f18a..bc5a8608b 100644
--- a/rescue.py
+++ b/rescue.py
@@ -185,7 +185,7 @@ def runShell(screen, msg=""):
def runRescue(anaconda):
for file in [ "services", "protocols", "group", "joe", "man.config",
- "nsswitch.conf", "selinux" ]:
+ "nsswitch.conf", "selinux", "mke2fs.conf" ]:
try:
os.symlink('/mnt/runtime/etc/' + file, '/etc/' + file)
except: