summaryrefslogtreecommitdiff
path: root/nscd.init
blob: 0b478d501088a34153eee64efa37ecf0c00e047c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/sh
#
# nscd:		Starts the Name Switch Cache Daemon
#
# chkconfig:	345 30 80
# description:	This is a daemon which handles passwd and group lookups \
#		for running programs and cache the results for the next \
#		query. You should start this daemon only if you use \
#		slow Services like NIS or NIS+
# processname:	nscd
# config:	/etc/nscd.conf
#

# Sanity checks.
[ -f /etc/nscd.conf ] || exit 0

# Source function library.
. /etc/rc.d/init.d/functions

# Get sysconfig
[ -f /etc/sysconfig/nscd ] && . /etc/sysconfig/nscd

start() {
	if [ ! -f /var/lock/subsys/nscd ]; then
		msg_starting "Name Switch Cache Daemon"
		daemon /usr/sbin/nscd
		RETVAL=$?
		[ $RETVAL -eq 0 ] && touch /var/lock/subsys/nscd
	else
		msg_already_running "Name Switch Cache Daemon"
	fi
}

stop() {
	if [ -f /var/lock/subsys/nscd ]; then
		msg_stopping "Name Switch Cache Daemon"
		killproc --pidfile /var/run/nscd/nscd.pid nscd -TERM
		rm -f /var/lock/subsys/nscd >/dev/null 2>&1
	else
		msg_not_running "Name Switch Cache Daemon"
	fi
}

condrestart() {
	if [ -f /var/lock/subsys/nscd ]; then
		stop
		start
	else
		msg_not_running "Name Switch Cache Daemon"
		RETVAL=$1
	fi
}

RETVAL=0
# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart)
	stop
	start
	;;
  try-restart)
	condrestart 0
	;;
  force-reload)
	condrestart 7
	;;
  reload)
	if [ -f /var/lock/subsys/nscd ]; then
		for db in passwd group hosts; do
			show "Invalidating %s cache" $db; busy
			nscd -i $db && ok || fail
		done
	else
		msg_not_running "Name Switch Cache Daemon"
	fi
	;;
  status)
	status nscd
	exit $?
	;;
  *)
	msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}"
	exit 3
esac

exit $RETVAL