move pykickstart -> imgcreate.pykickstart
[pykickstart/EL-5.git] / pykickstart / commands / zerombr.py
blob5d23c17dc3a63d78dc9b019ea273bedc3887b954
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 imgcreate.pykickstart.base import *
23 from imgcreate.pykickstart.options import *
25 import gettext
26 _ = lambda x: gettext.ldgettext("pykickstart", x)
28 class FC3_ZeroMbr(KickstartCommand):
29 def __init__(self, writePriority=110, zerombr=False):
30 KickstartCommand.__init__(self, writePriority)
31 self.zerombr = zerombr
33 def __str__(self):
34 if self.zerombr:
35 return "# Clear the Master Boot Record\nzerombr\n"
36 else:
37 return ""
39 def parse(self, args):
40 if len(args) > 0:
41 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)
43 self.zerombr = True
45 class F9_ZeroMbr(FC3_ZeroMbr):
46 def parse(self, args):
47 if len(args) > 0:
48 raise KickstartValueError, formatErrorMsg(self.lineno, msg=_("Kickstart command %s does not take any arguments") % "zerombr")
50 self.zerombr = True