This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, fedora/master, updated. fedora/glibc-2.10.90-21-1-g85cf374


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, fedora/master has been updated
       via  85cf3748c6c1f8f7484a35aa17616390a621382a (commit)
      from  ca9024296cd4d61c364943e1ab5d7613b899d8e0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=85cf3748c6c1f8f7484a35aa17616390a621382a

commit 85cf3748c6c1f8f7484a35aa17616390a621382a
Author: Andreas Schwab <schwab@redhat.com>
Date:   Thu Sep 10 15:20:12 2009 +0200

    Fix exit codes in nscd start script

diff --git a/nscd/nscd.init b/nscd/nscd.init
index 8ab3fbf..df313c5 100644
--- a/nscd/nscd.init
+++ b/nscd/nscd.init
@@ -72,7 +72,7 @@ restart() {
 # See how we were called.
 case "$1" in
     start)
-	start
+	[ -e /var/lock/subsys/nscd ] || start
 	RETVAL=$?
 	;;
     stop)
@@ -88,7 +88,7 @@ case "$1" in
 	RETVAL=$?
 	;;
     try-restart | condrestart)
-	[ -e /var/lock/subsys/nscd ] && restart
+	[ ! -e /var/lock/subsys/nscd ] || restart
 	RETVAL=$?
 	;;
     force-reload | reload)

-----------------------------------------------------------------------

Summary of changes:
 nscd/nscd.init |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]