Changeset 24589 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 11, 2009 3:20:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r24586 r24589 693 693 return 0 694 694 695 def makeportalCmd(ctx, args):695 def openportalCmd(ctx, args): 696 696 if (len(args) < 3): 697 print "usage: makeportal name port <password>"697 print "usage: openportal name port <password>" 698 698 return 0 699 699 mach = argsToMach(ctx,args) … … 1089 1089 'exportVm':['Export VM in OVF format: export Win /tmp/win.ovf', exportVMCmd, 0], 1090 1090 'screenshot':['Take VM screenshot to a file: screenshot Win /tmp/win.png 1024 768', screenshotCmd, 0], 1091 'teleport':['Teleport VM to another box (see makeportal): teleport Win anotherhost:8000 <passwd>', teleportCmd, 0],1092 ' makeportal':['Make portal for teleportation of VM from another box (see teleport): makeportal Win 8000 <passwd>', makeportalCmd, 0],1093 'closeportal':['Close portal for teleportation of VM from another box (seeteleport): closeportal Win', closeportalCmd, 0]1091 'teleport':['Teleport VM to another box (see openportal): teleport Win anotherhost:8000 <passwd>', teleportCmd, 0], 1092 'openportal':['Open portal for teleportation of VM from another box (see teleport): openportal Win 8000 <passwd>', openportalCmd, 0], 1093 'closeportal':['Close teleportation portal (see openportal,teleport): closeportal Win', closeportalCmd, 0] 1094 1094 } 1095 1095
Note:
See TracChangeset
for help on using the changeset viewer.