summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-config/mv_install.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2009-08-17 17:15:12 (GMT)
committerJames Meyer <james.meyer@operamail.com>2009-08-17 17:15:12 (GMT)
commitda98b0f401f135cb5a04270dbfc46c5dafc43d9d (patch)
tree88a1b4ca7f84ac655635e98de99e643252067ff7 /abs/core-testing/LinHES-config/mv_install.py
parent620cb6800d15e6b2b0738b6cdd29080d2685f70b (diff)
downloadlinhes_pkgbuild-da98b0f401f135cb5a04270dbfc46c5dafc43d9d.zip
linhes_pkgbuild-da98b0f401f135cb5a04270dbfc46c5dafc43d9d.tar.gz
linhes_pkgbuild-da98b0f401f135cb5a04270dbfc46c5dafc43d9d.tar.bz2
LinHESconfig: remove debugging code, finish myth vars in network
Diffstat (limited to 'abs/core-testing/LinHES-config/mv_install.py')
-rwxr-xr-xabs/core-testing/LinHES-config/mv_install.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/abs/core-testing/LinHES-config/mv_install.py b/abs/core-testing/LinHES-config/mv_install.py
index 2f2d1c2..56118c1 100755
--- a/abs/core-testing/LinHES-config/mv_install.py
+++ b/abs/core-testing/LinHES-config/mv_install.py
@@ -137,14 +137,13 @@ def copy_updates():
cp_and_log2(MVROOT+"/bin/", data_config.MOUNTPOINT+MVROOT+"/bin", "*.py")
def timezone_to_db(timefile):
- logging.info("importing timezone needs")
+ logging.info("importing timezone")
try:
f = open(timefile)
timezonecontents = f.readline().strip()
f.close()
except:
logging.debug("Couldn't open /tmp/etc/timezone, will not set the timezone")
- updatedb("HostTimeZone", "Unknown");
return
update_db("HostTimeZone", timezonecontents);
tzsplit = timezonecontents.partition('/')