mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
network: Try to read dnsmasq PIDs for inactive networks too
Just in case one needs a clean up. Resolves: https://issues.redhat.com/browse/RHEL-50968 Signed-off-by: Martin Kletzander <mkletzan@redhat.com> Reviewed-by: Laine Stump <laine@redhat.com>
This commit is contained in:
parent
447fda8981
commit
74a22c09be
@ -492,8 +492,9 @@ networkUpdateState(virNetworkObj *obj,
|
||||
if (virNetworkObjIsActive(obj))
|
||||
virNetworkObjPortForEach(obj, networkUpdatePort, obj);
|
||||
|
||||
/* Try and read dnsmasq pids of active networks */
|
||||
if (virNetworkObjIsActive(obj) && def->ips && (def->nips > 0)) {
|
||||
/* Try and read dnsmasq pids of both active and inactive networks, just in
|
||||
* case a network became inactive and we need to clean up. */
|
||||
if (def->ips && (def->nips > 0)) {
|
||||
const char *binpath = NULL;
|
||||
pid_t dnsmasqPid;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user