X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/blobdiff_plain/2367c5f209e1e207279fb499b458e19286a376ee..d9c91f069b5825d2c87e419d10c77850ecff7006:/files/usr/sbin/sipb-xen-remctl-help diff --git a/files/usr/sbin/sipb-xen-remctl-help b/files/usr/sbin/sipb-xen-remctl-help index d390a65..2646fbd 100755 --- a/files/usr/sbin/sipb-xen-remctl-help +++ b/files/usr/sbin/sipb-xen-remctl-help @@ -3,7 +3,7 @@ Help on using the Invirt remctl functions. """ import sys - +from invirt.config import structs as config help = [ ('list', 'show your VM\'s state (with xm list)'), @@ -26,7 +26,7 @@ def print_help(name, text): def main(args): args = [n for n in args if n in helpdict] - print 'remctl remote control ' + print 'remctl %s control ' % config.remote.hostname if args: for name in args: print_help(name, helpdict[name])