move pykickstart -> imgcreate.pykickstart
[pykickstart/EL-5.git] / pykickstart / commands / driverdisk.py
blob5f30049063b49496ec7cd819089263a5c2a31b31
2 # Chris Lumens <clumens@redhat.com>
4 # Copyright 2005, 2006, 2007, 2008 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.options import *
23 import gettext
24 _ = lambda x: gettext.ldgettext("pykickstart", x)
26 class FC3_DriverDiskData(BaseData):
27 def __init__(self, writePriority=0, partition="", source="", type=""):
28 BaseData.__init__(self)
30 self.partition = partition
31 self.source = source
32 self.type = type
34 def __str__(self):
35 retval = "driverdisk"
37 if self.partition:
38 retval += " %s" % self.partition
40 if self.type:
41 retval += " --type=%s" % self.type
42 elif self.source:
43 retval += " --source=%s" % self.source
45 return retval + "\n"
47 class FC3_DriverDisk(KickstartCommand):
48 def __init__(self, writePriority=0, driverdiskList=None):
49 KickstartCommand.__init__(self, writePriority)
50 self.op = self._getParser()
52 if driverdiskList is None:
53 driverdiskList = []
55 self.driverdiskList = driverdiskList
57 def __str__(self):
58 retval = ""
59 for dd in self.driverdiskList:
60 retval += dd.__str__()
62 return retval
64 def _getParser(self):
65 op = KSOptionParser(lineno=self.lineno)
66 op.add_option("--source")
67 op.add_option("--type")
68 return op
70 def parse(self, args):
71 (opts, extra) = self.op.parse_args(args=args)
73 if len(extra) == 1 and opts.source:
74 raise KickstartValueError, formatErrorMsg(self.lineno, msg=_("Only one of --source and partition may be specified for driverdisk command."))
76 if not extra and not opts.source:
77 raise KickstartValueError, formatErrorMsg(self.lineno, msg=_("One of --source or partition must be specified for driverdisk command."))
79 ddd = self.handler.DriverDiskData()
80 self._setToObj(self.op, opts, ddd)
81 if len(extra) == 1:
82 ddd.partition = extra[0]
84 self.add(ddd)
86 def add(self, newObj):
87 self.driverdiskList.append(newObj)