Github user jburwell commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1371#discussion_r62782438 --- Diff: server/src/com/cloud/network/vpc/VpcManagerImpl.java --- @@ -705,6 +744,30 @@ public boolean deleteVpcOffering(final long offId) { } @Override + public Map<String, String> updateQuaggaConfig(final Long zoneId, final String protocol, final String ospfArea, final Short helloInterval, final Short deadInterval, + final Short retransmitInterval, final Short transitDelay, final String authentication, final String quaggaPassword, final String superCIDR, final Boolean enabled) + throws BadCIDRException { + OSPFZoneConfig qzc = new OSPFZoneConfig(); + DataCenterVO dc = _dcDao.findById(zoneId); + _dcDao.loadDetails(dc); + Map<String, String> details = dc.getDetails(); + qzc.setDefaultValues(details); + qzc.setValues(protocol, ospfArea, helloInterval, deadInterval, retransmitInterval, transitDelay, authentication, quaggaPassword, superCIDR, enabled); + details = qzc.getValues(); + dc.setDetails(details); + _dcDao.saveDetails(dc); + s_logger.info("Quagga config saved to datacenter " + zoneId); --- End diff -- Please include the contents of the config in this log message.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---