[pykickstart][PATCH] Change spaw option --same-as-ram to --hibernation

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



See also: https://home.corp.redhat.com/wiki/swap-size-recommendations

Resolves: rhbz#744129
Related: rhbz#815557
---
 pykickstart/commands/partition.py |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/pykickstart/commands/partition.py b/pykickstart/commands/partition.py
index 804ab10..8124e9f 100644
--- a/pykickstart/commands/partition.py
+++ b/pykickstart/commands/partition.py
@@ -187,13 +187,13 @@ class RHEL6_PartData(F12_PartData):
     def __init__(self, *args, **kwargs):
         F12_PartData.__init__(self, *args, **kwargs)
 
-        self.sameAsRam = kwargs.get("sameAsRam", False)
+        self.hibernation = kwargs.get("hibernation", False)
 
     def _getArgsAsStr(self):
         retval = F11_PartData._getArgsAsStr(self)
 
-        if self.sameAsRam:
-            retval += "--same-as-ram"
+        if self.hibernation:
+            retval += "--hibernation"
 
         return retval
 
@@ -357,16 +357,16 @@ class RHEL6_Partition(F12_Partition):
 
     def _getParser(self):
         op = F12_Partition._getParser(self)
-        op.add_option("--same-as-ram", dest="sameAsRam", action="store_true",
+        op.add_option("--hibernation", dest="hibernation", action="store_true",
                         default=False)
         return op
 
     def parse(self, args):
         pd = F12_Partition.parse(self, args)
 
-        if pd.recommended and pd.sameAsRam:
+        if pd.recommended and pd.hibernation:
             raise KickstartValueError(formatErrorMsg(self.lineno,
-             msg=_("Options --recommended and --same-as-ram are mutually exclusive.")))
+             msg=_("Options --recommended and --hibernation are mutually exclusive.")))
 
         return pd
 
-- 
1.7.4.4

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list


[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux