summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-07-16 19:45:33 +0000
committerJeremy Katz <katzj@redhat.com>2007-07-16 19:45:33 +0000
commitc9691d6e4c0e280a4bd6bf15ebd3b0a887c70190 (patch)
tree6a2bfaf5adb606b8a1f3f61a56fd47b0ca7a012f /backend.py
parentce260315c73e920e63dd6fc7badc86ca0527bd92 (diff)
downloadanaconda-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 'backend.py')
-rw-r--r--backend.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend.py b/backend.py
index 1fa1311a7..7070dadad 100644
--- a/backend.py
+++ b/backend.py
@@ -44,6 +44,10 @@ class AnacondaBackend:
self.supportsUpgrades = True
self.supportsPackageSelection = False
+ # some backends may have a special case for rootfs formatting
+ # FIXME: we should handle this a little more elegantly
+ self.skipFormatRoot = False
+
def doPreSelection(self, intf, id, instPath):
pass