Add new RHEL7 logvol objects to master
[pykickstart.git] / pykickstart / commands / zerombr.py
blob468d45e0ab41b6b58d09c350cd72b3d254160ce5
2 # Chris Lumens <clumens@redhat.com>
4 # Copyright 2005, 2006, 2007 Red Hat, Inc.
6 # This copyrighted material is made available to anyone wishing to use, modify,
7 # copy, or redistribute it subject to the terms and conditions of the GNU
8 # General Public License v.2. This program is distributed in the hope that it
9 # will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
10 # implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 # See the GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License along with
14 # this program; if not, write to the Free Software Foundation, Inc., 51
15 # Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat
16 # trademarks that are incorporated in the source code or documentation are not
17 # subject to the GNU General Public License and may only be used or replicated
18 # with the express permission of Red Hat, Inc.
20 import warnings
22 from pykickstart.base import KickstartCommand
23 from pykickstart.errors import KickstartParseError, formatErrorMsg
24 from pykickstart.options import KSOptionParser
26 import gettext
27 _ = lambda x: gettext.ldgettext("pykickstart", x)
29 class FC3_ZeroMbr(KickstartCommand):
30 removedKeywords = KickstartCommand.removedKeywords
31 removedAttrs = KickstartCommand.removedAttrs
33 def __init__(self, writePriority=110, *args, **kwargs):
34 KickstartCommand.__init__(self, writePriority, *args, **kwargs)
35 self.op = self._getParser()
36 self.zerombr = kwargs.get("zerombr", False)
38 def __str__(self):
39 retval = KickstartCommand.__str__(self)
41 if self.zerombr:
42 retval += "# Clear the Master Boot Record\nzerombr\n"
44 return retval
46 def _getParser(self):
47 op = KSOptionParser()
48 return op
50 def parse(self, args):
51 (_opts, extra) = self.op.parse_args(args=args, lineno=self.lineno)
53 if len(extra) > 0:
54 warnings.warn(_("Ignoring deprecated option on line %s: The zerombr command no longer takes any options. In future releases, this will result in a fatal error from kickstart. Please modify your kickstart file to remove any options.") % self.lineno, DeprecationWarning)
56 self.zerombr = True
57 return self
59 class F9_ZeroMbr(FC3_ZeroMbr):
60 removedKeywords = FC3_ZeroMbr.removedKeywords
61 removedAttrs = FC3_ZeroMbr.removedAttrs
63 def parse(self, args):
64 (_opts, extra) = self.op.parse_args(args=args, lineno=self.lineno)
66 if len(extra) > 0:
67 raise KickstartParseError(formatErrorMsg(self.lineno, msg=_("Kickstart command %s does not take any arguments") % "zerombr"))
69 self.zerombr = True
70 return self