diff options
author | Mike Fulbright <msf@redhat.com> | 2002-06-04 05:08:24 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-06-04 05:08:24 +0000 |
commit | d7834f43bde823f38317f97affd11819eb693e18 (patch) | |
tree | 93673404cba25b06a79d9d3e51664653c48ca8a5 | |
parent | e5576141cabe3ece02b6ca42ef1049b8929a7d8f (diff) | |
download | anaconda-d7834f43bde823f38317f97affd11819eb693e18.tar.gz anaconda-d7834f43bde823f38317f97affd11819eb693e18.tar.xz anaconda-d7834f43bde823f38317f97affd11819eb693e18.zip |
move hack value to constants file at least
-rw-r--r-- | constants.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/constants.py b/constants.py index 0fb4591be..930dd341a 100644 --- a/constants.py +++ b/constants.py @@ -37,6 +37,10 @@ CLEARPART_TYPE_LINUX = 1 CLEARPART_TYPE_ALL = 2 CLEARPART_TYPE_NONE = 3 +# XXX this is made up and used by the size spinner; should just be set with +# a callback +MAX_PART_SIZE = 1024*1024*1024 + # these are used for kickstart CHECK_DEPS = 0 IGNORE_DEPS = 1 |