There is one thing missing, please ignore this. I will send the new version. On Wed, 2012-04-25 at 13:15 +0200, Vratislav Podzimek wrote: > Resolves: rhbz#815557 > > Simple patch making swap suggestions more flexible. However the new values are > not consistent with the documentation [1]. > > [1] https://bugzilla.redhat.com/show_bug.cgi?id=744129#c2 > --- > iutil.py | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/iutil.py b/iutil.py > index f7254e2..b8eb8ba 100644 > --- a/iutil.py > +++ b/iutil.py > @@ -455,23 +455,23 @@ def swapSuggestion(quiet=0): > > #table suggested in rhbz#744129 > if mem <= 4096: > - minswap = 2048 > + minswap = 1024 > maxswap = 2048 > > elif 4096 < mem <= 16384: > - minswap = 4096 > + minswap = 2048 > maxswap = 4096 > > elif 16384 < mem <= 65536: > - minswap = 8192 > + minswap = 4096 > maxswap = 8192 > > elif 65536 < mem <= 262144: > - minswap = 16384 > + minswap = 8192 > maxswap = 16384 > > else: > - minswap = 32768 > + minswap = 16384 > maxswap = 32768 > > if not quiet: -- Vratislav Podzimek Anaconda Rider | Red Hat, Inc. | Brno - Czech Republic _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list