summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-14 00:08:19 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-14 00:08:19 +0000
commita1c8ed06464d140ce520422d874e2bf9d3943f80 (patch)
tree73a98f9d9df3eddddb706565b8c7953a8370c6d5 /installclasses
parent26b07e69e3f7945db8453f1036388116920abce8 (diff)
downloadanaconda-a1c8ed06464d140ce520422d874e2bf9d3943f80.tar.gz
anaconda-a1c8ed06464d140ce520422d874e2bf9d3943f80.tar.xz
anaconda-a1c8ed06464d140ce520422d874e2bf9d3943f80.zip
move a lot more out of partitioning.py... a lot of the functions are now
methods of request classes or the Partitions class
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/custom.py6
-rw-r--r--installclasses/server.py3
-rw-r--r--installclasses/workstation.py3
3 files changed, 6 insertions, 6 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py
index 0c79b9fe0..2789d823a 100644
--- a/installclasses/custom.py
+++ b/installclasses/custom.py
@@ -1,11 +1,9 @@
from installclass import BaseInstallClass
from translate import N_
+from constants import *
import os
import iutil
-from autopart import CLEARPART_TYPE_LINUX
-from autopart import CLEARPART_TYPE_ALL
-from autopart import CLEARPART_TYPE_NONE
-from partitioning import *
+from autopart import getAutopartitionBoot, autoCreatePartitionRequests
# custom installs are easy :-)
class InstallClass(BaseInstallClass):
diff --git a/installclasses/server.py b/installclasses/server.py
index 6aae2f97b..44551963f 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -1,8 +1,9 @@
from installclass import BaseInstallClass
from translate import *
+from constants import *
import os
import iutil
-from partitioning import *
+from autopart import getAutopartitionBoot, autoCreatePartitionRequests
class InstallClass(BaseInstallClass):
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index 76fcb5977..addf913bd 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -1,8 +1,9 @@
from installclass import BaseInstallClass
from translate import N_
+from constants import *
import os
import iutil
-from partitioning import *
+from autopart import getAutopartitionBoot, autoCreatePartitionRequests
from fsset import *
class InstallClass(BaseInstallClass):