mirror of https://github.com/apache/cloudstack.git
fix end of files and codespell errors
This commit is contained in:
parent
2d6280b9da
commit
f820d0125d
|
|
@ -472,4 +472,3 @@ iscsi.session.cleanup.enabled=false
|
|||
# Optional vCenter SHA1 thumbprint for VMware to KVM conversion via VDDK, passed as
|
||||
# -io vddk-thumbprint=<value>. If unset, CloudStack computes it on the KVM host via openssl.
|
||||
#vddk.thumbprint=
|
||||
|
||||
|
|
|
|||
|
|
@ -59,4 +59,3 @@ UPDATE `cloud`.`configuration`
|
|||
SET value = CONCAT_WS('\n', 'Hello {{username}}!', 'You have requested to reset your password. Please click the following link to reset your password:', '{{{resetLink}}}', 'If you did not request a password reset, please ignore this email.', '', 'Regards,', 'The CloudStack Team')
|
||||
WHERE name = 'user.password.reset.mail.template'
|
||||
AND value IN (CONCAT_WS('\n', 'Hello {{username}}!', 'You have requested to reset your password. Please click the following link to reset your password:', 'http://{{{resetLink}}}', 'If you did not request a password reset, please ignore this email.', '', 'Regards,', 'The CloudStack Team'), CONCAT_WS('\n', 'Hello {{username}}!', 'You have requested to reset your password. Please click the following link to reset your password:', '{{{domainUrl}}}{{{resetLink}}}', 'If you did not request a password reset, please ignore this email.', '', 'Regards,', 'The CloudStack Team'));
|
||||
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ public class LibvirtConvertInstanceCommandWrapper extends CommandWrapper<Convert
|
|||
String vddkLibDir = resolveVddkSetting(cmd.getVddkLibDir(), serverResource.getVddkLibDir());
|
||||
if (StringUtils.isBlank(vddkLibDir)) {
|
||||
String err = String.format("VDDK lib dir is not configured on the host. " +
|
||||
"Set '%s' in agent.properties or in details parameter of the import api calll to use VDDK-based conversion.", "vddk.lib.dir");
|
||||
"Set '%s' in agent.properties or in details parameter of the import api call to use VDDK-based conversion.", "vddk.lib.dir");
|
||||
logger.error("({}) {}", originalVMName, err);
|
||||
return new Answer(cmd, false, err);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue