summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2008-02-11 13:35:50 -0500
committerBill Nottingham <notting@redhat.com>2008-02-11 13:35:50 -0500
commit4195005f05b87bbd75c6d9dc5ca034cceecaa4b7 (patch)
tree3fad286e99fb87277ca25c5b37e4431d149c88f4 /installclass.py
parent3db06dee7802729ff373ab13f94ff78bfe50230a (diff)
downloadanaconda-4195005f05b87bbd75c6d9dc5ca034cceecaa4b7.tar.gz
anaconda-4195005f05b87bbd75c6d9dc5ca034cceecaa4b7.tar.xz
anaconda-4195005f05b87bbd75c6d9dc5ca034cceecaa4b7.zip
Use /etc/adjtime as the configuration file for UTC/not-UTC.
Also, remove ARC support while we're here - it's pointless.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/installclass.py b/installclass.py
index 68a7e37d5..e9fcbe5cc 100644
--- a/installclass.py
+++ b/installclass.py
@@ -263,8 +263,8 @@ class BaseInstallClass(object):
def setGateway(self, id, gateway):
id.network.setGateway(gateway)
- def setTimezoneInfo(self, id, timezone, asUtc = 0, asArc = 0):
- id.timezone.setTimezoneInfo(timezone, asUtc, asArc)
+ def setTimezoneInfo(self, id, timezone, asUtc = 0):
+ id.timezone.setTimezoneInfo(timezone, asUtc)
def setAuthentication(self, id, authStr):
id.auth = authStr