Setup dhcp range in correct place

This commit is contained in:
alena 2010-12-07 19:17:38 -08:00
parent 6ad104f3b2
commit a06a07f48d
1 changed files with 7 additions and 8 deletions

View File

@ -2201,15 +2201,14 @@ public class DomainRouterManagerImpl implements DomainRouterManager, DomainRoute
} else if (nic.getTrafficType() == TrafficType.Control) {
controlNic = nic;
}
if (dhcpRange != null) {
buf.append(" dhcprange=" + dhcpRange);
}
if (domain != null) {
buf.append(" domain="+router.getDomain());
}
}
if (dhcpRange != null) {
buf.append(" dhcprange=" + dhcpRange);
}
if (domain != null) {
buf.append(" domain="+router.getDomain());
}
if (s_logger.isDebugEnabled()) {
s_logger.debug("Boot Args for " + profile + ": " + buf.toString());