search for: liveimagecreator

Displaying 1 result from an estimated 1 matches for "liveimagecreator".

2009 Sep 22
1
[PATCH] edit-livecd in python
...): + """don't want to expand the disk""" + def __init__(self, lofile, size): + SparseLoopbackDisk.__init__(self, lofile, size) + + def create(self): + #self.expand(create = True) + LoopbackDisk.create(self) + +class LiveImageEditor(LiveImageCreator): + """class for editing LiveCD images. + + We need an instance of LiveImageCreator however we do not have a kickstart + file nor do we need to create a new image. We just want to reuse some of + LiveImageCreators methods on an existing livecd image. + + &quot...