From 972240b9729dc023dff6a5ea519f2a55944b8c08 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 28 Jan 2009 16:02:48 -0800 Subject: [PATCH] Don't ship boot.iso on cd1 or the DVD. It just wastes space. --- src/pypungi/splittree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pypungi/splittree.py b/src/pypungi/splittree.py index 1f4ae5a5..a7111cb6 100644 --- a/src/pypungi/splittree.py +++ b/src/pypungi/splittree.py @@ -201,7 +201,7 @@ self.reserve_size : Additional size needed to be reserved on the first disc. for i in range(self.bin_list[0], self.bin_list[-1] + 1): if i == 1: - p = os.popen('find %s/ -type f -not -name .discinfo -not -name "*\.rpm"' % self.dist_dir, 'r') + p = os.popen('find %s/ -type f -not -name .discinfo -not -name "*\.rpm" -not -name "boot.iso"' % self.dist_dir, 'r') filelist = p.read() p.close() filelist = string.split(filelist)