Overview
| Comment: | Added checks for snapshots into cmd_commit. Fixes [b5f7b7a1e8] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
34605c20d1c459004518d21ed4ba58fe |
| User & Date: | vitus on 2015-12-18 14:42:22.309 |
| Other Links: | manifest | tags |
Context
|
2015-12-21
| ||
| 08:44 | Fixed some problems appeared when integrating create into vws check-in: fe4f40d658 user: vitus tags: trunk | |
|
2015-12-18
| ||
| 14:42 | Added checks for snapshots into cmd_commit. Fixes [b5f7b7a1e8] check-in: 34605c20d1 user: vitus tags: trunk | |
| 13:14 | Expanded config handling. Fixes [00962e4d5d] and [381a103023] check-in: 30d9fa306e user: vitus tags: trunk | |
Changes
Modified vws
from [47bc1de06d]
to [550bd4a08e].
| ︙ | |||
345 346 347 348 349 350 351 | 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | - - - - - - + + + + + + + + + + + + - - - - - + + + + + + + + + + |
os.system('qemu-img create -f qcow2 -b "%s" "%s"'%(backing,drive))
def cmd_commit(options):
#
# Commits last snapshot changes into it's backing file
#
if options.stopped:
|
| ︙ | |||
510 511 512 513 514 515 516 | 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 | - + + + + - + |
"""
Adds a subparser and adds a machine name argument to it
"""
p=cmds.add_parser(name,**kwargs)
p.add_argument('machine',type=str,help='name of vm to operate on')
return p
#
|
| ︙ |