Openvz --ipadd can be provided multiple times

Vzctl man page says that --ipadd can be provided multiple times to add
several IP addresses. Looping over the configured ip addresses to add
one --ipadd for each. This would even handle the multiple IPs handled
by openvz_conf.c
This commit is contained in:
Cédric Bosdonnat 2014-11-12 09:30:09 +01:00
parent bbf1eafa57
commit a4e8639068

View File

@ -905,9 +905,13 @@ openvzDomainSetNetwork(virConnectPtr conn, const char *vpsid,
virCommandAddArgBuffer(cmd, &buf);
} else if (net->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
net->nips > 0) {
size_t i;
/* --ipadd ip */
char *ipStr = virSocketAddrFormat(&net->ips[0]->address);
virCommandAddArgList(cmd, "--ipadd", ipStr, NULL);
for (i = 0; i < net->nips; i++) {
char *ipStr = virSocketAddrFormat(&net->ips[i]->address);
virCommandAddArgList(cmd, "--ipadd", ipStr, NULL);
}
}
/* TODO: processing NAT and physical device */