+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
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
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