From 5456b0dc8e9ed9d121b9c2f25bdbc238482fd31b Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Wed, 18 Mar 2009 19:37:55 -0400 Subject: [PATCH] In invirt-remote: * Print errors to stderr on nocreate and nolvm so that the website actually notices. svn path=/trunk/packages/invirt-remote/; revision=2264 --- debian/changelog | 7 +++++++ server/usr/sbin/invirt-remote-proxy | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index b42c03f..486cb64 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +invirt-remote (0.3.11) unstable; urgency=low + + * Print errors to stderr on nocreate and nolvm so that the website + actually notices. + + -- Evan Broder Wed, 18 Mar 2009 19:37:38 -0400 + invirt-remote (0.3.10) unstable; urgency=low * Let invirt-remote-proxy know all the possible subcommands. diff --git a/server/usr/sbin/invirt-remote-proxy b/server/usr/sbin/invirt-remote-proxy index cea1bbd..d64a7d1 100755 --- a/server/usr/sbin/invirt-remote-proxy +++ b/server/usr/sbin/invirt-remote-proxy @@ -20,7 +20,7 @@ case "$TYPE/$SERVICE" in invirt-remote-availability "$@" ;; web/lvcreate | web/lvremove | web/lvrename | web/lvresize ) if [ -f "/etc/invirt/nolvm" ]; then - echo "LVM operations are temporarily disabled for maintenance, sorry." + echo "LVM operations are temporarily disabled for maintenance, sorry." >&2 exit 2 fi remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;; @@ -28,7 +28,7 @@ case "$TYPE/$SERVICE" in invirt-remctl-help ;; control/create|control/install ) if [ -f "/etc/invirt/nocreate" ]; then - echo "Booting VMs is temporarily disabled for maintenance, sorry." + echo "Booting VMs is temporarily disabled for maintenance, sorry." >&2 exit 2 fi invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;; -- 1.7.9.5