diff options
author | Jeremy Katz <katzj@redhat.com> | 2007-07-16 19:45:33 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2007-07-16 19:45:33 +0000 |
commit | c9691d6e4c0e280a4bd6bf15ebd3b0a887c70190 (patch) | |
tree | 6a2bfaf5adb606b8a1f3f61a56fd47b0ca7a012f /livecd.py | |
parent | ce260315c73e920e63dd6fc7badc86ca0527bd92 (diff) | |
download | anaconda-c9691d6e4c0e280a4bd6bf15ebd3b0a887c70190.tar.gz anaconda-c9691d6e4c0e280a4bd6bf15ebd3b0a887c70190.tar.xz anaconda-c9691d6e4c0e280a4bd6bf15ebd3b0a887c70190.zip |
2007-07-16 Jeremy Katz <katzj@redhat.com>
From Jane Dogalt <jdogalt AT yahoo DOT com>
* fsset.py: Add case for skipping formatting the rootfs dependent
on backend so that we don't format the rootfs for live images. A
little bit of a hack, but good enough for now
* backend.py: Add skipFormatRoot attribute, defaults to False
* livecd.py: Add skipFormatRoot attribute = True
* packages.py: Pass skipFormatRoot
Diffstat (limited to 'livecd.py')
-rw-r--r-- | livecd.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -152,6 +152,7 @@ class LiveCDCopyBackend(backend.AnacondaBackend): backend.AnacondaBackend.__init__(self, method, instPath) self.supportsUpgrades = False self.supportsPackageSelection = False + self.skipFormatRoot = True def doPreInstall(self, anaconda): if anaconda.dir == DISPATCH_BACK: |