machine is on, but the command is invalid
svn path=/trunk/packages/sipb-xen-remote-server/; revision=1159
+sipb-xen-remote-server (0.10) unstable; urgency=low
+
+ * If a command is invalid, but the machine's on, give an actually useful
+ error message
+
+ -- Evan Broder <broder@mit.edu> Wed, 22 Oct 2008 00:29:50 -0400
+
sipb-xen-remote-server (0.9.2) unstable; urgency=low
* Expose an interface to the autoinstaller over remctl
stdout=PIPE, stderr=PIPE)
(out, err) = p.communicate()
if p.returncode == 1:
- print >>sys.stderr, "machine '%s' is not on" % machine_name
+ print >>sys.stderr, "ERROR: invalid command"
return 1
sys.stderr.write(err)
sys.stdout.write(out)