[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Creation of Fedora CD install
- From: Joel Andres Granados <jgranado redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Creation of Fedora CD install
- Date: Wed, 25 Apr 2007 11:36:51 +0200
Hi List:
Was poking at pungi to creat CD images and found out that it spits out a
traceback that has something to do with a missing directory. On further
investigation I found out that the error was located in the splittree.py
file. The directory for the first CD is created but the necessary
directories for the subsequent CD (2,3,4....) are not created. For my
system the error was corrected with the addition of a line to the
splittree.py file.
Diff:
--- splittree.py-11.2.0.55 2007-04-24 17:49:16.000000000 +0200
+++ splittree.py-11.2.0.55-JG 2007-04-24 17:52:52.000000000 +0200
@@ -228,6 +227,7 @@
pass
else:
+ os.makedirs("%s-disc%d/%s" % (self.dist_dir, i,
self.product_path))
self.linkFiles(self.dist_dir, "%s-disc%d"
%(self.dist_dir, i), self.common_files)
self.createDiscInfo(i)
AFAIK this line was erased to take away the RPMS directory. But in
erasing the whole line the "self.product_path" directory was also erased.
I tested the change and everything seems in place.
Regards.
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]