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
from pykickstart.base import KickstartCommand
21
from pykickstart.errors import KickstartParseError, KickstartValueError, formatErrorMsg
22
from pykickstart.options import KSOptionParser
25
_ = lambda x: gettext.ldgettext("pykickstart", x)
27
class FC3_Timezone(KickstartCommand):
28
removedKeywords = KickstartCommand.removedKeywords
29
removedAttrs = KickstartCommand.removedAttrs
31
def __init__(self, writePriority=0, *args, **kwargs):
32
KickstartCommand.__init__(self, writePriority, *args, **kwargs)
33
self.op = self._getParser()
35
self.isUtc = kwargs.get("isUtc", False)
36
self.timezone = kwargs.get("timezone", "")
39
retval = KickstartCommand.__str__(self)
47
retval += "# System timezone\ntimezone %s %s\n" %(utc, self.timezone)
53
op.add_option("--utc", dest="isUtc", action="store_true", default=False)
56
def parse(self, args):
57
(opts, extra) = self.op.parse_args(args=args, lineno=self.lineno)
58
self._setToSelf(self.op, opts)
61
raise KickstartValueError(formatErrorMsg(self.lineno, msg=_("A single argument is expected for the %s command") % "timezone"))
63
self.timezone = extra[0]
66
class FC6_Timezone(FC3_Timezone):
67
removedKeywords = FC3_Timezone.removedKeywords
68
removedAttrs = FC3_Timezone.removedAttrs
71
retval = KickstartCommand.__str__(self)
79
retval += "# System timezone\ntimezone %s %s\n" %(utc, self.timezone)
84
op = FC3_Timezone._getParser(self)
85
op.add_option("--utc", "--isUtc", dest="isUtc", action="store_true", default=False)
88
class F18_Timezone(FC6_Timezone):
89
def __init__(self, writePriority=0, *args, **kwargs):
90
FC6_Timezone.__init__(self, writePriority, *args, **kwargs)
91
self.op = self._getParser()
92
self.nontp = kwargs.get("nontp", False)
93
self.ntpservers = kwargs.get("ntpservers", set())
96
retval = KickstartCommand.__str__(self)
99
retval += "# System timezone\n"
100
retval += "timezone " + self._getArgsAsStr() + "\n"
104
def _getArgsAsStr(self):
105
retval = self.timezone
114
retval += " --ntpservers=" + ",".join(self.ntpservers)
118
def _getParser(self):
119
def servers_cb(option, opt_str, value, parser):
120
for server in value.split(","):
122
parser.values.ensure_value(option.dest, set()).add(server)
125
op = FC6_Timezone._getParser(self)
126
op.add_option("--nontp", dest="nontp", action="store_true", default=False)
127
op.add_option("--ntpservers", dest="ntpservers", action="callback",
128
callback=servers_cb, nargs=1, type="string")
132
def parse(self, args):
133
FC6_Timezone.parse(self, args)
135
if self.ntpservers and self.nontp:
136
msg = formatErrorMsg(self.lineno, msg=_("Options --nontp and "\
137
"--ntpservers are mutually exclusive"))
138
raise KickstartParseError(msg)