blob: 3fcb52b2c9c88694b4db6f4969f0aade8fd6d91f (
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
|
#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
use dns ldap net slapd
}
checkconfig() {
if [ ! -d /var/run/nscd ] ; then
mkdir -p /var/run/nscd
chmod 755 /var/run/nscd
fi
if [ -z "${NSCD_PERMS_OK}" ] && [ "$(stat -c %a /var/run/nscd)" != "755" ] ; then
echo ""
ewarn "nscd run dir is not world readable, you should reset the perms:"
ewarn "chmod 755 /var/run/nscd"
ewarn "chmod a+rw /var/run/nscd/socket"
echo ""
ewarn "To disable this warning, set 'NSCD_PERMS_OK=1' in /etc/conf.d/unscd"
echo ""
fi
}
start() {
checkconfig
ebegin "Starting Name Service Cache Daemon (unscd)"
start-stop-daemon --start --quiet \
--exec /usr/sbin/unscd --pidfile /var/run/nscd/nscd.pid
eend $?
}
stop() {
ebegin "Shutting down Name Service Cache Daemon (unscd)"
start-stop-daemon --stop --quiet \
--exec /usr/sbin/unscd --pidfile /var/run/nscd/nscd.pid
eend $?
}
|