Changeset 2264


Ignore:
Timestamp:
Mar 18, 2009, 7:37:55 PM (15 years ago)
Author:
broder
Message:

In invirt-remote:

  • Print errors to stderr on nocreate and nolvm so that the website actually notices.
Location:
trunk/packages/invirt-remote
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-remote/debian/changelog

    r2256 r2264  
     1invirt-remote (0.3.11) unstable; urgency=low
     2
     3  * Print errors to stderr on nocreate and nolvm so that the website
     4    actually notices.
     5
     6 -- Evan Broder <broder@mit.edu>  Wed, 18 Mar 2009 19:37:38 -0400
     7
    18invirt-remote (0.3.10) unstable; urgency=low
    29
  • trunk/packages/invirt-remote/server/usr/sbin/invirt-remote-proxy

    r2256 r2264  
    2121    web/lvcreate | web/lvremove | web/lvrename | web/lvresize )
    2222        if [ -f "/etc/invirt/nolvm" ]; then
    23             echo "LVM operations are temporarily disabled for maintenance, sorry."
     23            echo "LVM operations are temporarily disabled for maintenance, sorry." >&2
    2424            exit 2
    2525        fi
     
    2929    control/create|control/install )
    3030        if [ -f "/etc/invirt/nocreate" ]; then
    31             echo "Booting VMs is temporarily disabled for maintenance, sorry."
     31            echo "Booting VMs is temporarily disabled for maintenance, sorry." >&2
    3232            exit 2
    3333        fi
Note: See TracChangeset for help on using the changeset viewer.