move pykickstart -> imgcreate.pykickstart
[pykickstart/EL-5.git] / pykickstart / commands / logging.py
blob60e9fc826b59a91807851d07a565500e7e610cb0
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.errors import *
22 from imgcreate.pykickstart.options import *
24 import gettext
25 _ = lambda x: gettext.ldgettext("pykickstart", x)
27 class FC6_Logging(KickstartCommand):
28 def __init__(self, writePriority=0, host="", level="", port=""):
29 KickstartCommand.__init__(self, writePriority)
30 self.op = self._getParser()
32 self.host = host
33 self.level = level
34 self.port = port
36 def __str__(self):
37 if self.level != "":
38 retval = "# Installation logging level\nlogging --level=%s" % self.level
40 if self.host != "":
41 retval += " --host=%s" % self.host
43 if self.port != "":
44 retval += " --port=%s" % self.port
46 return retval + "\n"
47 else:
48 return ""
50 def _getParser(self):
51 op = KSOptionParser(lineno=self.lineno)
52 op.add_option("--host")
53 op.add_option("--level", type="choice",
54 choices=["debug", "info", "warning", "error", "critical"])
55 op.add_option("--port")
56 return op
58 def parse(self, args):
59 (opts, extra) = self.op.parse_args(args=args)
60 self._setToSelf(self.op, opts)