summaryrefslogtreecommitdiffstats
path: root/pyanaconda/kickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyanaconda/kickstart.py')
-rw-r--r--pyanaconda/kickstart.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pyanaconda/kickstart.py b/pyanaconda/kickstart.py
index 1dd0aebeb..d4aa991ab 100644
--- a/pyanaconda/kickstart.py
+++ b/pyanaconda/kickstart.py
@@ -1262,6 +1262,13 @@ class Services(commands.services.FC6_Services):
root=ROOT_PATH)
class Timezone(commands.timezone.F18_Timezone):
+ def __init__(self, *args):
+ commands.timezone.F18_Timezone.__init__(self, *args)
+
+ #TODO: Do we need to set it to False in case of dual-boot?
+ #default to UTC HW clock in Anaconda
+ self.isUtc = True
+
def execute(self, *args):
# write out timezone configuration
if not timezone.is_valid_timezone(self.timezone):