Fix stderr redirection in "/usr/sbin/fai already running..."
authorMichael Prokop <devnull@localhost>
Wed, 17 Oct 2007 20:59:53 +0000 (22:59 +0200)
committerMichael Prokop <devnull@localhost>
Wed, 17 Oct 2007 20:59:53 +0000 (22:59 +0200)
debian/changelog
grml-live

index b1f480e..816bb69 100644 (file)
@@ -2,8 +2,9 @@ grml-live (0.0.6) unstable; urgency=low
 
   * New option "-a" for setting architecture. This allows building
     grml(32) on amd64.
+  * Fix stderr redirection in "/usr/sbin/fai already running..."
 
- -- Michael Prokop <mika@grml.org>  Wed, 17 Oct 2007 10:00:14 +0200
+ -- Michael Prokop <mika@grml.org>  Wed, 17 Oct 2007 22:59:08 +0200
 
 grml-live (0.0.5) unstable; urgency=low
 
index 4356ef5..f60a745 100755 (executable)
--- a/grml-live
+++ b/grml-live
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2 or any later version.
-# Latest change: Mit Okt 10 09:38:42 CEST 2007 [mika]
+# Latest change: Wed Oct 17 22:59:03 CEST 2007 [mika]
 ################################################################################
 
 # read configuration files, set some misc variables {{{
@@ -22,7 +22,7 @@ if [ "$(id -u 2>/dev/null)" != 0 ] ; then
 fi
 
 if [ -r /var/run/fai/FAI_INSTALLATION_IN_PROGRESS ] ; then
-   echo "/usr/sbin/fai already running or was aborted before."&>2
+   echo "/usr/sbin/fai already running or was aborted before.">&2
    echo "You may remove /var/run/fai/FAI_INSTALLATION_IN_PROGRESS and try again.">&2
    exit 1
 fi