]> git.etc.gen.nz Git - update-motd.git/commitdiff
updated to released version 1.5
authorDustin Kirkland <kirkland@canonical.com>
Fri, 19 Sep 2008 20:59:10 +0000 (15:59 -0500)
committerDustin Kirkland <kirkland@canonical.com>
Fri, 19 Sep 2008 20:59:10 +0000 (15:59 -0500)
debian/changelog
update-motd

index 0eeeea5efbe3a7bd1f82574acfae72b103171727..f223b8277462e178f5df9180bf2c5d6d09caf79b 100644 (file)
@@ -1,3 +1,10 @@
+update-motd (1.5) intrepid; urgency=low
+
+  * update-motd: print error messages to stderr, rather than stdout,
+    (LP: #271368).
+
+ -- Dustin Kirkland <kirkland@ubuntu.com>  Wed, 17 Sep 2008 09:18:54 -0500
+
 update-motd (1.4) intrepid; urgency=low
 
   * debian/config: validate that 1<=FREQ_IN_MIN<=59, at most 5 times before
index ea22b30c8e628c785c037989048b03499a885fcf..45c9d6f4499541c02b3feeb1be023bf88da8a398 100755 (executable)
@@ -38,7 +38,7 @@ FORCE=0
 if [ -f "$NEW" ]; then
        # If /var/run/motd.new exists, then another instance of update-motd
        # is running
-       echo "Another update-motd is running ($NEW exists)"
+       echo "Another update-motd is running ($NEW exists)" 1>&2
        exit 0
 fi
 
@@ -51,10 +51,10 @@ for arg in $@; do
 done
 
 if [ ! -f "$ENABLED" ] && [ "$FORCE" != "1" ]; then
-       echo "$NAME is disabled.  You can run:"
-       echo "  * $NAME --force"
-       echo "  * service update-motd start"
-       echo "  * dpkg-reconfigure update-motd"
+       echo "$NAME is disabled.  You can run:" 1>&2
+       echo "  * $NAME --force" 1>&2
+       echo "  * service update-motd start" 1>&2
+       echo "  * dpkg-reconfigure update-motd" 1>&2
        exit 1
 fi