mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-05 00:50:35 +02:00
2005-02-27 Dan Williams <dcbw@redhat.com>
* src/backends/NetworkManagerRedHat.c - (nm_system_init): Kill any dhclient processes lying around as well as stopping 'nifd' if its already been started. NetworkManager subsumes the functions of nifd (kicking mDNSResponder, autoip) git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@479 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
16b246969a
commit
eae50c786b
2 changed files with 13 additions and 0 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2005-02-27 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/backends/NetworkManagerRedHat.c
|
||||
- (nm_system_init): Kill any dhclient processes lying around as well
|
||||
as stopping 'nifd' if its already been started. NetworkManager
|
||||
subsumes the functions of nifd (kicking mDNSResponder, autoip)
|
||||
|
||||
2005-02-27 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* panel-applet/NMWirelessApplet.c
|
||||
|
|
|
|||
|
|
@ -36,6 +36,12 @@
|
|||
*/
|
||||
void nm_system_init (void)
|
||||
{
|
||||
/* Kill any dhclients lying around */
|
||||
nm_system_kill_all_dhcp_daemons ();
|
||||
|
||||
/* Stop nifd since we respawn mDNSResponder ourselves */
|
||||
if (nm_spawn_process ("/etc/init.d/nifd status") != 0)
|
||||
nm_spawn_process ("/etc/init.d/nifd stop");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue