diff --git a/client/tomcatconf/commands.properties.in b/client/tomcatconf/commands.properties.in index c8ae73f15d1..255cfa307c1 100755 --- a/client/tomcatconf/commands.properties.in +++ b/client/tomcatconf/commands.properties.in @@ -213,9 +213,11 @@ registerPreallocatedLun=com.cloud.server.api.commands.RegisterPreallocatedLunCmd deletePreallocatedLun=com.cloud.server.api.commands.DeletePreallocatedLunCmd;1 listPreallocatedLuns=com.cloud.api.commands.ListPreallocatedLunsCmd;1 - #### vm group commands createInstanceGroup=com.cloud.api.commands.CreateVMGroupCmd;15 deleteInstanceGroup=com.cloud.api.commands.DeleteVMGroupCmd;15 updateInstanceGroup=com.cloud.api.commands.UpdateVMGroupCmd;15 listInstanceGroups=com.cloud.api.commands.ListVMGroupsCmd;15 + +### Certificate commands +updateCustomCertificate=com.cloud.api.commands.UpdateCertificateCmd;15 \ No newline at end of file diff --git a/server/src/com/cloud/server/ManagementServerImpl.java b/server/src/com/cloud/server/ManagementServerImpl.java index 1da497b7414..097ca672ba5 100755 --- a/server/src/com/cloud/server/ManagementServerImpl.java +++ b/server/src/com/cloud/server/ManagementServerImpl.java @@ -9115,7 +9115,7 @@ public class ManagementServerImpl implements ManagementServer { @Override public boolean updateCertificate(String certificatePath) { - return _certDao.persistCustomCertToDb(certificatePath); + return _certDao.persistCustomCertToDb(certificatePath ); } }