Github user sureshanaparti commented on a diff in the pull request:

    https://github.com/apache/cloudstack/pull/1875#discussion_r104373535
  
    --- Diff: 
plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager/VmwareManagerImpl.java
 ---
    @@ -707,6 +709,23 @@ private String setupMountPoint(String parent) {
             return mountPoint;
         }
     
    +    @Override
    +    public synchronized void setSystemVmTmpltPermission(String mountPoint) 
{
    +        if (!s_isSystemVmTmpltPermissionSet) {
    +            s_logger.debug("Set permissions for " + mountPoint);
    +            String result = null;
    +            final String systemVmTmpltPermissions = "0777";
    +            Script script = new Script(true, "chmod", _timeout, s_logger);
    +            script.add("-R", systemVmTmpltPermissions, mountPoint);
    --- End diff --
    
    @SudharmaJain Used the string as suggested instead of hardcoded value for 
permissions.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to