diff options
author | Antti Kaijanmäki <antti@kaijanmaki.net> | 2008-08-18 08:30:28 +0000 |
---|---|---|
committer | Antti Kaijanmäki <antti@kaijanmaki.net> | 2008-08-18 08:30:28 +0000 |
commit | 2c21a2fe6b0498585fba0beb003ac8aa6351803c (patch) | |
tree | 9544edfe2ed9a6c96eda933c35fb5110f1d666c6 /src/backends/NetworkManagerSlackware.c | |
parent | e04934d93efba622123809cc767488af673b2967 (diff) | |
download | NetworkManager-mbca.tar.gz |
keep up with trunkmbca
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/branches/mbca@3981 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
Diffstat (limited to 'src/backends/NetworkManagerSlackware.c')
-rw-r--r-- | src/backends/NetworkManagerSlackware.c | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/src/backends/NetworkManagerSlackware.c b/src/backends/NetworkManagerSlackware.c index 91fac1c766..8d7c5bf294 100644 --- a/src/backends/NetworkManagerSlackware.c +++ b/src/backends/NetworkManagerSlackware.c @@ -25,31 +25,11 @@ #endif #include <stdio.h> -#include <sys/types.h> -#include <signal.h> #include <string.h> #include <stdlib.h> #include "NetworkManagerGeneric.h" #include "NetworkManagerSystem.h" -#include "NetworkManagerUtils.h" -#include "nm-device.h" -#include "nm-utils.h" - -/* - * Mostly a mix of the Gentoo and RedHat Backends - */ - -/* - * nm_system_init - * - * Initializes the distribution-specific system backend - * - */ -void nm_system_init (void) -{ - nm_generic_init (); -} /* * nm_system_enable_loopback @@ -64,18 +44,6 @@ void nm_system_enable_loopback (void) /* - * nm_system_kill_all_dhcp_daemons - * - * Kill all DHCP daemons currently running, done at startup. - * - */ -void nm_system_kill_all_dhcp_daemons (void) -{ - nm_spawn_process ("/bin/killall -q dhcpcd"); -} - - -/* * nm_system_update_dns * * Make glibc/nscd aware of any changes to the resolv.conf file by @@ -87,43 +55,3 @@ void nm_system_update_dns (void) /* I'm not running nscd */ } -/* - * nm_system_activate_nis - * - * set up the nis domain and write a yp.conf - * - */ -void nm_system_activate_nis (NMIP4Config *config) -{ -} - -/* - * nm_system_shutdown_nis - * - * shutdown ypbind - * - */ -void nm_system_shutdown_nis (void) -{ -} - -/* - * nm_system_set_hostname - * - * set the hostname - * - */ -void nm_system_set_hostname (NMIP4Config *config) -{ -} - -/* - * nm_system_should_modify_resolv_conf - * - * Can NM update resolv.conf, or is it locked down? - */ -gboolean nm_system_should_modify_resolv_conf (void) -{ - return TRUE; -} - |