You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2019/02/01 17:26:44 UTC

[vcl] branch VCL-1093 updated: VIM_SSH.pm: modified vm_unregister: fixed small typo 'of' -> 'off'

This is an automated email from the ASF dual-hosted git repository.

jfthomps pushed a commit to branch VCL-1093
in repository https://gitbox.apache.org/repos/asf/vcl.git


The following commit(s) were added to refs/heads/VCL-1093 by this push:
     new d9300c1  VIM_SSH.pm: modified vm_unregister: fixed small typo 'of' -> 'off'
d9300c1 is described below

commit d9300c15667a6b333e89b11135f7f14bcf8183bb
Author: Josh Thompson <jf...@ncsu.edu>
AuthorDate: Fri Feb 1 12:24:27 2019 -0500

    VIM_SSH.pm: modified vm_unregister: fixed small typo 'of' -> 'off'
---
 managementnode/lib/VCL/Module/Provisioning/VMware/VIM_SSH.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/managementnode/lib/VCL/Module/Provisioning/VMware/VIM_SSH.pm b/managementnode/lib/VCL/Module/Provisioning/VMware/VIM_SSH.pm
index c3a88d2..7678a0d 100644
--- a/managementnode/lib/VCL/Module/Provisioning/VMware/VIM_SSH.pm
+++ b/managementnode/lib/VCL/Module/Provisioning/VMware/VIM_SSH.pm
@@ -1586,7 +1586,7 @@ sub vm_unregister {
 			return 1;
 		}
 		
-		# Power of the VM if it is powered on or the unregister command will fail
+		# Power off the VM if it is powered on or the unregister command will fail
 		my $vm_power_state = $self->get_vm_power_state($vmx_file_path);
 		if ($vm_power_state && $vm_power_state !~ /off/i) {
 			if (!$self->vm_power_off($vmx_file_path)) {