Ignore:
Timestamp:
Oct 24, 2008, 12:00:00 AM (16 years ago)
Author:
price
Message:

sipb-xen -> invirt for remote-server

Location:
trunk/packages/invirt-remote-server
Files:
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-remote-server/files/usr/sbin/invirt-remote-create

    r1175 r1176  
    2222def main(argv):
    2323    if len(argv) < 3:
    24         print >> sys.stderr, "usage: sipb-xen-remote-create <operation> <machine> [<other args...>]"
     24        print >> sys.stderr, "usage: invirt-remote-create <operation> <machine> [<other args...>]"
    2525        return 2
    2626    operation = argv[1]
     
    3838            return 1
    3939
    40     p = Popen(['/usr/sbin/sipb-xen-remote-proxy-web', 'listvms'], stdout=PIPE)
     40    p = Popen(['/usr/sbin/invirt-remote-proxy-web', 'listvms'], stdout=PIPE)
    4141    output = p.communicate()[0]
    4242    if p.returncode != 0:
    4343        raise RuntimeError("Command '%s' returned non-zero exit status %d"
    44                            % ('sipb-xen-remote-proxy-web', p.returncode))
     44                           % ('invirt-remote-proxy-web', p.returncode))
    4545    vms = yaml.load(output, yaml.CSafeLoader)
    4646
Note: See TracChangeset for help on using the changeset viewer.