Bug#312404: nscd: want status option for init script

2005-07-24 Thread GOTO Masanori
At Tue, 07 Jun 2005 15:55:55 -0700,
Stephen Gildea wrote:
 The following patch provides a status option for the /etc/init.d/ncsd
 script.  It also fixes the exit status if the script is given an
 unsupported option.

Thanks, I put it in svn.

Regards,
-- gotom

BTW, this is side node for me taht we should synchronize upstream's
nscd/nscd.init which is for rpm based systems.


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



Bug#312404: nscd: want status option for init script

2005-06-07 Thread Stephen Gildea
Package: nscd
Version: 2.3.2.ds1-22
Tags: patch

The following patch provides a status option for the /etc/init.d/ncsd
script.  It also fixes the exit status if the script is given an
unsupported option.

  Stephen


--- glibc-2.3.2.ds1/debian/debhelper.in/nscd.init   2005-02-08 
12:35:08.0 -0800
+++ debian/debhelper.in/nscd.init   2005-06-02 14:24:29.0 -0700
@@ -56,8 +56,19 @@
 restart)
$0 force-reload
;;
+status)
+   echo -n Status of $(basename $0) service: 
+   if pidof /usr/sbin/nscd  /dev/null ; then
+   echo running.
+   RETVAL=0
+   else
+   echo not running.
+   RETVAL=3
+   fi
+   ;;
 *)
-   echo Usage: /etc/init.d/nscd {start|stop|reload|force-reload|restart}
+   echo Usage: /etc/init.d/nscd 
{start|stop|reload|force-reload|restart|status}
+   RETVAL=1
;;
 esac
 exit $RETVAL


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