summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--packages.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a3a06287..3ef13ecac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-04-26 Jeremy Katz <katzj@redhat.com>
+
+ * packages.py (setupTimezone): Don't change timezone on rootpath
+ (Jane Dogalt, #185930)
+
2006-04-26 Chris Lumens <clumens@redhat.com>
* isys/isys.py (inet_ntoa, inet_aton): Pass the right types to the
diff --git a/packages.py b/packages.py
index c6323b8fa..f2a4ed549 100644
--- a/packages.py
+++ b/packages.py
@@ -167,7 +167,7 @@ def setupTimezone(timezone, upgrade, instPath, dir):
return
# dont do this in test mode!
- if flags.test:
+ if flags.test or flags.rootpath:
return
os.environ["TZ"] = timezone.tz