Small refactor
gitea/vn-vmware/master This commit looks good
Details
gitea/vn-vmware/master This commit looks good
Details
This commit is contained in:
parent
6c9b098c62
commit
482613b105
|
@ -1,4 +1,4 @@
|
||||||
vn-vmware (1.1.14) stable; urgency=low
|
vn-vmware (1.1.15) stable; urgency=low
|
||||||
|
|
||||||
* Initial Release.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -486,7 +486,7 @@ sub backup_machine() {
|
||||||
unless ($test) {
|
unless ($test) {
|
||||||
my $snapshot_ref = $vm->CreateSnapshot(
|
my $snapshot_ref = $vm->CreateSnapshot(
|
||||||
name => "backup",
|
name => "backup",
|
||||||
description => "Scheduled backup",
|
description => "Virtual machine backup",
|
||||||
memory => false,
|
memory => false,
|
||||||
quiesce => true
|
quiesce => true
|
||||||
);
|
);
|
||||||
|
@ -871,8 +871,8 @@ sub snapshot_machine() {
|
||||||
$vm->CreateSnapshot(
|
$vm->CreateSnapshot(
|
||||||
name => $snapshot_name,
|
name => $snapshot_name,
|
||||||
description => $snapshot_desc,
|
description => $snapshot_desc,
|
||||||
memory => 0,
|
memory => false,
|
||||||
quiesce => 0
|
quiesce => false
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue