Set UTC=no by default
authorMichael Prokop <mika@grml.org>
Wed, 12 Aug 2009 21:45:08 +0000 (23:45 +0200)
committerMichael Prokop <mika@grml.org>
Wed, 12 Aug 2009 22:23:41 +0000 (00:23 +0200)
debian/changelog
etc/grml/fai/config/class/GRMLBASE.var
etc/grml/fai/config/scripts/GRMLBASE/18-timesetup

index ab497f3..79e3bd0 100644 (file)
@@ -25,13 +25,15 @@ grml-live (0.9.21) UNRELEASED; urgency=low
   * Drop hydra from GRML_FULL (the license is not a clean GPL one).
   * Drop bar from GRML_FULL (no release since 2007, consider using
     cpipe instead).
+  * Set UTC=no by default. See http://bts.grml.org/grml/issue708 for
+    details. Credits to Ulrich Zehl for debugging.
 
   [ Thorsten Glaser ]
   * Update MirOS bsd4grml to 20090812 and sync menu.lst, grub.cfg,
     isolinux.cfg, syslinux.cfg with each other; provide a fallback
     way to boot MirOS bsd4grml from both GRUB versions using modules
 
- -- Michael Prokop <mika@grml.org>  Tue, 11 Aug 2009 16:57:41 +0200
+ -- Michael Prokop <mika@grml.org>  Wed, 12 Aug 2009 23:44:41 +0200
 
 grml-live (0.9.20) unstable; urgency=low
 
index 1d203d9..e7ce51b 100644 (file)
@@ -6,8 +6,8 @@ FAI_ALLOW_UNSIGNED=1
 CONSOLEFONT=
 KEYMAP=us-latin1
 
-# Set UTC=yes if your system clock is set to UTC (GMT), and UTC=no if not.
-UTC=yes
+# Set UTC=yes if your system clock is set to UTC (GMT) and UTC=no if not.
+UTC=no
 TIMEZONE=Europe/Vienna
 
 # root password for the new installed linux system; md5 and crypt are possible
index e3d27a6..57c288b 100755 (executable)
@@ -10,6 +10,7 @@ set -u
 set -e
 
 # tell if hwclock is running in UTC or local time
+# by default it's set to UTC=yes, we usually want UTC=no
 if [ -n "$UTC" ] ; then
    echo "Setting hwclock parameter UTC to $UTC"
    sed -i "s|^UTC=.*$|UTC="$UTC"|" $target/etc/default/rcS