#!/bin/sh # # /etc/rc.d/nscd: start/stop nscd daemon # case $1 in start) /usr/sbin/nscd ;; stop) /usr/sbin/nscd -K ;; restart) $0 stop sleep 2 $0 start ;; *) echo "usage: $0 [start|stop|restart]" ;; esac # End of file