Small refactor
gitea/vn-vmware/master This commit looks good Details

This commit is contained in:
Juan Ferrer 2020-02-19 08:36:17 +01:00
parent 6c9b098c62
commit 482613b105
2 changed files with 4 additions and 4 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
vn-vmware (1.1.14) stable; urgency=low vn-vmware (1.1.15) stable; urgency=low
* Initial Release. * Initial Release.

View File

@ -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
); );
} }