mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6168: fixed the description for global config "vm.instancename.flag" - the flag is applicable for VMware hypervisor only
This commit is contained in:
parent
e8486dfcaa
commit
3d34a136a6
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in New Issue