Author: aurel32
Date: 2009-05-09 08:49:26 +0000 (Sat, 09 May 2009)
New Revision: 3465

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/debhelper.in/nscd.init
Log:
  * debian/debhelper.in/nscd.init: fix return code when querying status
    and nscd is not running to comply with LSB.  Closes: #527883.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog        2009-05-08 12:25:54 UTC (rev 
3464)
+++ glibc-package/trunk/debian/changelog        2009-05-09 08:49:26 UTC (rev 
3465)
@@ -1,3 +1,10 @@
+eglibc (2.9-13) unstable; urgency=low
+
+  * debian/debhelper.in/nscd.init: fix return code when querying status
+    and nscd is not running to comply with LSB.  Closes: #527883.
+
+ -- Aurelien Jarno <[email protected]>  Sat, 09 May 2009 10:48:09 +0200
+
 eglibc (2.9-12) unstable; urgency=low
 
   [ Petr Salinger ]

Modified: glibc-package/trunk/debian/debhelper.in/nscd.init
===================================================================
--- glibc-package/trunk/debian/debhelper.in/nscd.init   2009-05-08 12:25:54 UTC 
(rev 3464)
+++ glibc-package/trunk/debian/debhelper.in/nscd.init   2009-05-09 08:49:26 UTC 
(rev 3465)
@@ -115,7 +115,7 @@
        log_daemon_msg "Status of $DESC service: "
        status
        case "$?" in
-               0) log_failure_msg "not running." ; exit 1 ;;
+               0) log_failure_msg "not running." ; exit 3 ;;
                1) log_success_msg "running." ; exit 0 ;;
        esac
        ;;


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to