From f255e7a66c1b09c57d777a643cfa4038007b8500 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 7 Aug 2001 01:30:09 +0000 Subject: fstab is written out pre-install, so don't write it out post-install. move %post action to actually be written out after all other configuration information since that's more sensible (50869) --- instdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'instdata.py') diff --git a/instdata.py b/instdata.py index c5eee700d..638b2069e 100644 --- a/instdata.py +++ b/instdata.py @@ -100,7 +100,7 @@ class InstallData: self.firewall.write (instPath) self.rootPassword.write (instPath, self.auth) self.accounts.write (instPath, self.auth) - self.fsset.write (instPath) + self.instClass.postAction(instPath, flags.serial) def writeKS(self, filename): # make it so only root can read, could have password -- cgit