From ebee615101cf455bb814748b0340ed8ced7f5986 Mon Sep 17 00:00:00 2001 From: Robert Love Date: Fri, 17 Mar 2006 15:01:37 +0000 Subject: [PATCH] 2006-03-17 Robert Love * src/backends/NetworkManagerSuSE.c: Do "rcypbind reload" to send the signal SIGHUP to ypbind, not "rcypbind restart" to physically restart it, in case it is not running in the first place. We just want its configuration reloaded. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1614 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 7 +++++++ src/backends/NetworkManagerSuSE.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 83e942784d..174222fd94 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-03-17 Robert Love + + * src/backends/NetworkManagerSuSE.c: Do "rcypbind reload" to send the + signal SIGHUP to ypbind, not "rcypbind restart" to physically restart + it, in case it is not running in the first place. We just want its + configuration reloaded. + 2006-03-15 Robert Love * gnome/applet/applet.glade, gnome/applet/wso-wep-ascii.c, diff --git a/src/backends/NetworkManagerSuSE.c b/src/backends/NetworkManagerSuSE.c index 07c21a023b..bc376ef1ff 100644 --- a/src/backends/NetworkManagerSuSE.c +++ b/src/backends/NetworkManagerSuSE.c @@ -1112,8 +1112,8 @@ void nm_system_activate_nis (NMIP4Config *config) if (stat ("/usr/sbin/rcypbind", &sb) != -1) { - nm_info ("Restarting ypbind."); - nm_spawn_process ("/usr/sbin/rcypbind restart"); + nm_info ("Asking ypbind to reload its configuration."); + nm_spawn_process ("/usr/sbin/rcypbind reload"); } if (stat ("/usr/sbin/rcautofs", &sb) != -1) {