Changeset 27713 in vbox for trunk/src/VBox
- Timestamp:
- Mar 25, 2010 3:26:57 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r27647 r27713 370 370 else: 371 371 passwd = "" 372 373 if len(args) > 2: 374 maxDowntime = int(args[2]) 375 else: 376 maxDowntime = 250 372 377 373 378 port = int(port) 374 maxDowntime = 250375 379 print "Teleporting to %s:%d..." %(host,port) 376 380 progress = console.teleport(host, port, passwd, maxDowntime) … … 1236 1240 'exportVm':['Export VM in OVF format: export Win /tmp/win.ovf', exportVMCmd, 0], 1237 1241 'screenshot':['Take VM screenshot to a file: screenshot Win /tmp/win.png 1024 768', screenshotCmd, 0], 1238 'teleport':['Teleport VM to another box (see openportal): teleport Win anotherhost:8000 <passwd> ', teleportCmd, 0],1242 'teleport':['Teleport VM to another box (see openportal): teleport Win anotherhost:8000 <passwd> <maxDowntime>', teleportCmd, 0], 1239 1243 'openportal':['Open portal for teleportation of VM from another box (see teleport): openportal Win 8000 <passwd>', openportalCmd, 0], 1240 1244 'closeportal':['Close teleportation portal (see openportal,teleport): closeportal Win', closeportalCmd, 0],
Note:
See TracChangeset
for help on using the changeset viewer.