dhcp: store dhclient's pid file in "/var/run/NetworkManager" instead of "/var/run"

The pid-file is private to NetworkManager. It should reside in NetworkManager's
run directory instead of "/var/run".

I don't think that changing this location can break existing uses. Why
would somebody outside of NetworkManager care about this file?

https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/157
This commit is contained in:
Thomas Haller 2019-05-18 10:42:30 +02:00
parent b18cda2671
commit eebcbfae75

View file

@ -376,7 +376,7 @@ dhclient_start (NMDhcpClient *client,
iface = nm_dhcp_client_get_iface (client);
uuid = nm_dhcp_client_get_uuid (client);
pid_file = g_strdup_printf (RUNSTATEDIR "/dhclient%s-%s.pid",
pid_file = g_strdup_printf (NMRUNDIR "/dhclient%s-%s.pid",
_addr_family_to_path_part (addr_family),
iface);