#! /bin/sh

# nscd: start the name service caching daemon from libc

. init-script-lib
. daemon-lib

case $1 in 
	start)
	    fatal need filekeeping
	    nscd
	    ;;
	stop)
	    nscd --shutdown || daemon-kill nscd
	    ;;
esac

	    