summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-06-25 18:31:58 +0000
committerJeremy Katz <katzj@redhat.com>2001-06-25 18:31:58 +0000
commit128b28f8d4228b2ec18c62a6f466d377ea8b5552 (patch)
treea1d6f4335db0053c5ff12c0b8da4adc2d49e3ae3 /installclasses
parent9b747ab57465b419c9579906ec7ed23a388d8a79 (diff)
downloadanaconda-128b28f8d4228b2ec18c62a6f466d377ea8b5552.tar.gz
anaconda-128b28f8d4228b2ec18c62a6f466d377ea8b5552.tar.xz
anaconda-128b28f8d4228b2ec18c62a6f466d377ea8b5552.zip
don't have builtin knowledge of default fs type
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/workstation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index a0364f4a5..79930eac4 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -31,14 +31,14 @@ class InstallClass(BaseInstallClass):
BaseInstallClass.setInstallData(self, id)
self.setHostname(id, "localhost.localdomain")
- rootrequest = PartitionSpec(fileSystemTypeGet("ext2"),
+ rootrequest = PartitionSpec(fileSystemTypeGetDefault(),
mountpoint = "/",
size = 800,
grow = 1,
requesttype = REQUEST_NEW,
format = 1)
- bootrequest = PartitionSpec(fileSystemTypeGet("ext2"),
+ bootrequest = PartitionSpec(fileSystemTypeGetDefault(),
mountpoint = "/boot",
size = 100,
grow = 0,