Do not execute unicode_start on grml-small in live-mode. 0.6.33
authorMichael Prokop <mika@grml.org>
Fri, 13 Apr 2007 10:50:23 +0000 (12:50 +0200)
committerMichael Prokop <mika@grml.org>
Fri, 13 Apr 2007 10:50:23 +0000 (12:50 +0200)
autoconfig.functions
debian/changelog

index 4b603a5..44034e7 100755 (executable)
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Klaus Knopper <knopper@knopper.net>, (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Die Apr 03 17:02:59 CEST 2007 [mika]
+# Latest change: Fre Apr 13 12:49:52 CEST 2007 [mika]
 ################################################################################
 
 # {{{ path, variables, signals, umask, zsh
@@ -273,9 +273,12 @@ config_language(){
  # activate unicode console if running within utf8 environment
  if [ -r /etc/default/locale ] ; then
     if grep -q "LANG=.*UTF" /etc/default/locale ; then
-       einfo "Setting up unicode environment."
-       unicode_start
-       eend $?
+       if checkgrmlsmall && [ -z "$INSTALLED" ] ; then
+         ewarn "Not runnning unicode_start: grml-small with reduced language support detected." ; eend 0
+       else
+          einfo "Setting up unicode environment."
+          unicode_start ; eend $?
+       fi
     fi
  fi
 
index 4172b40..60203c1 100644 (file)
@@ -1,3 +1,10 @@
+grml-autoconfig (0.6.33) unstable; urgency=low
+
+  * Do not execute unicode_start on grml-small in live-mode.
+    [Testing: issue193]
+
+ -- Michael Prokop <mika@grml.org>  Fri, 13 Apr 2007 12:49:56 +0200
+
 grml-autoconfig (0.6.32) unstable; urgency=low
 
   * Fix logical structure of config_vmware().