CLOUDSTACK-6168: fixed the description for global config "vm.instancename.flag" - the flag is applicable for VMware hypervisor only

This commit is contained in:
Alena Prokharchyk 2014-07-29 11:15:24 -07:00
parent e8486dfcaa
commit 3d34a136a6
2 changed files with 4 additions and 1 deletions

View File

@ -1062,7 +1062,7 @@ public enum Config {
Boolean.class,
"vm.instancename.flag",
"false",
"If set to true, will set guest VM's name as it appears on the hypervisor, to its hostname",
"If set to true, will set guest VM's name as it appears on the hypervisor, to its hostname. The flag is supported for VMware hypervisor only",
"true,false"),
IncorrectLoginAttemptsAllowed(
"Advanced",

View File

@ -429,3 +429,6 @@ CREATE VIEW `cloud`.`template_view` AS
`cloud`.`resource_tags` ON resource_tags.resource_id = vm_template.id
and (resource_tags.resource_type = 'Template' or resource_tags.resource_type='ISO');
UPDATE `cloud`.`configuration` SET description="If set to true, will set guest VM's name as it appears on the hypervisor, to its hostname. The flag is supported for VMware hypervisor only" WHERE name='vm.instancename.flag';