move pykickstart -> imgcreate.pykickstart
[pykickstart/EL-5.git] / pykickstart / commands / key.py
blobbfb0278c2ea7416ef0314e47e7da81142e0d0fa4
2 # Chris Lumens <clumens@redhat.com>
4 # Copyright 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 from imgcreate.pykickstart.base import *
21 from imgcreate.pykickstart.constants import *
22 from imgcreate.pykickstart.errors import *
23 from imgcreate.pykickstart.options import *
25 import gettext
26 _ = lambda x: gettext.ldgettext("pykickstart", x)
28 class F7_Key(KickstartCommand):
29 def __init__(self, writePriority=0, key=""):
30 KickstartCommand.__init__(self, writePriority)
31 self.key = key
33 def __str__(self):
34 if self.key == KS_INSTKEY_SKIP:
35 return "key --skip\n"
36 elif self.key != "":
37 return "key %s\n" % self.key
38 else:
39 return ""
41 def parse(self, args):
42 if len(args) > 1:
43 raise KickstartValueError, formatErrorMsg(self.lineno, msg=_("Command %s only takes one argument") % "key")
45 if args[0] == "--skip":
46 self.key = KS_INSTKEY_SKIP
47 else:
48 self.key = args[0]
50 RHEL5_Key = F7_Key