svn path=/trunk/packages/invirt-remote/; revision=2188
+invirt-remote (0.3.7) unstable; urgency=low
+
+ * Add an availability remctl for when we get around to letting us make
+ web remctls.
+
+ -- Evan Broder <broder@mit.edu> Thu, 26 Feb 2009 01:04:07 -0500
+
invirt-remote (0.3.6) unstable; urgency=low
* Don't confuse KB with KiB, or MB with MiB.
--- /dev/null
+#!/usr/bin/python
+
+"""
+Retrieve and print out the availability value for all Invirt hosts
+"""
+
+from invirt import remote
+import yaml
+import sys
+
+def main(argv):
+ print yaml.dump(dict(remote.bcast('availability')), default_flow_style=False)
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv))
invirt-remote-listvms "$@" ;;
web/vnccert )
invirt-remote-vnccert "$@" ;;
+ web/availability )
+ invirt-remote-availability "$@" ;;
control/help )
invirt-remctl-help ;;
control/create|control/install )