mirror of https://github.com/apache/cloudstack.git
save securitygroupenabled in host details
This commit is contained in:
parent
4238ac9e68
commit
3ebcfa9a7c
|
|
@ -312,6 +312,7 @@ public class XcpServerDiscoverer extends DiscovererBase implements Discoverer, L
|
|||
DataCenterVO zone = _dcDao.findById(dcId);
|
||||
boolean securityGroupEnabled = zone.isSecurityGroupEnabled();
|
||||
params.put("securitygroupenabled", Boolean.toString(securityGroupEnabled));
|
||||
details.put("securitygroupenabled", Boolean.toString(securityGroupEnabled));
|
||||
|
||||
params.put("wait", Integer.toString(_wait));
|
||||
details.put("wait", Integer.toString(_wait));
|
||||
|
|
|
|||
|
|
@ -5902,7 +5902,6 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
|
|||
details.put("private.network.device", _privateNetworkName);
|
||||
}
|
||||
|
||||
details.put("can_bridge_firewall", Boolean.toString(_canBridgeFirewall));
|
||||
cmd.setHostDetails(details);
|
||||
cmd.setName(hr.nameLabel);
|
||||
cmd.setGuid(_host.uuid);
|
||||
|
|
|
|||
Loading…
Reference in New Issue