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 2018/06/06 16:11:12 UTC

[1/2] vcl git commit: VCL-1101 Changing chmod 755 from string to octal value

Repository: vcl
Updated Branches:
  refs/heads/develop 6741fa48d -> d0150becc


VCL-1101 Changing chmod 755 from string to octal value


Project: http://git-wip-us.apache.org/repos/asf/vcl/repo
Commit: http://git-wip-us.apache.org/repos/asf/vcl/commit/0f62b8af
Tree: http://git-wip-us.apache.org/repos/asf/vcl/tree/0f62b8af
Diff: http://git-wip-us.apache.org/repos/asf/vcl/diff/0f62b8af

Branch: refs/heads/develop
Commit: 0f62b8afde3b2dd53d16dc8f770d41533f3b459c
Parents: 2fb5c2d
Author: Mike Jennings <gm...@ncsu.edu>
Authored: Mon May 21 12:49:36 2018 -0400
Committer: Mike Jennings <gm...@ncsu.edu>
Committed: Mon May 21 12:49:36 2018 -0400

----------------------------------------------------------------------
 managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/vcl/blob/0f62b8af/managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm
----------------------------------------------------------------------
diff --git a/managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm b/managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm
index aa465ff..dc2d51a 100644
--- a/managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm
+++ b/managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm
@@ -1945,7 +1945,7 @@ sub prepare_vmx {
 	}
 	
 	# The vmx file should be set to executable
-	chmod("0755", "/tmp/$vmx_file_name");
+	chmod(0755, "/tmp/$vmx_file_name");
 	
 	# Copy the temporary vmx file the the VM host
 	$self->vmhost_os->copy_file_to($temp_vmx_file_path, $vmx_file_path) || return;


[2/2] vcl git commit: VCL-1101 - This closes #2

Posted by jf...@apache.org.
VCL-1101 - This closes #2


Project: http://git-wip-us.apache.org/repos/asf/vcl/repo
Commit: http://git-wip-us.apache.org/repos/asf/vcl/commit/d0150bec
Tree: http://git-wip-us.apache.org/repos/asf/vcl/tree/d0150bec
Diff: http://git-wip-us.apache.org/repos/asf/vcl/diff/d0150bec

Branch: refs/heads/develop
Commit: d0150becca0616c4f834ad99bd9cd767ffabb05e
Parents: 6741fa4 0f62b8a
Author: Josh Thompson <jf...@ncsu.edu>
Authored: Wed Jun 6 12:08:55 2018 -0400
Committer: Josh Thompson <jf...@ncsu.edu>
Committed: Wed Jun 6 12:08:55 2018 -0400

----------------------------------------------------------------------
 managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------