Files
Arquivotheca.Solaris-2.5/cmd/initpkg/init.d/nscd
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

32 lines
571 B
Bash
Executable File

#!/bin/sh
#
# Copyright (c) 1994 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident "@(#)nscd 1.5 95/02/21 SMI"
#
case "$1" in
start)
test -f /etc/nscd.conf -a -f /usr/sbin/nscd || exit 0
disable=""
for table in passwd group hosts
do
if egrep '^'$table':.*nisplus' /etc/nsswitch.conf >/dev/null
then
/usr/lib/nscd_nischeck $table ||
disable="$disable -e $table,no"
fi
done
/usr/sbin/nscd$disable
;;
stop)
test -f /usr/sbin/nscd || exit 0
/usr/sbin/nscd -K
;;
*)
echo "Usage: /etc/init.d/nscd { start | stop }"
;;
esac
exit 0