summaryrefslogtreecommitdiffstats
path: root/partitions.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-05-23 20:08:38 +0000
committerMike Fulbright <msf@redhat.com>2002-05-23 20:08:38 +0000
commite08c5d291cab413f17c1ff523cfa1dd457b93cad (patch)
tree9027f30de89bcd31d65f192b07140fbdfc00555b /partitions.py
parentcc23608f4c8453ba2a699cbbcaded38c04b5786e (diff)
downloadanaconda-e08c5d291cab413f17c1ff523cfa1dd457b93cad.tar.gz
anaconda-e08c5d291cab413f17c1ff523cfa1dd457b93cad.tar.xz
anaconda-e08c5d291cab413f17c1ff523cfa1dd457b93cad.zip
bump minimum size of /var up to 384MB so RHN is happier
Diffstat (limited to 'partitions.py')
-rw-r--r--partitions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partitions.py b/partitions.py
index 2ab4cc2e0..53d5f1171 100644
--- a/partitions.py
+++ b/partitions.py
@@ -484,7 +484,7 @@ class Partitions:
If baseChecks is set, the basic sanity tests which the UI runs prior to
accepting a partition will be run on the requests as well.
"""
- checkSizes = [('/usr', 250), ('/tmp', 50), ('/var', 50),
+ checkSizes = [('/usr', 250), ('/tmp', 50), ('/var', 384),
('/home', 100), ('/boot', 20)]
warnings = []
errors = []