r38: Fix caching of name->sid lookups
[Samba/gebeck_regimport.git] / packaging / Mandrake / wrepld.init
blobb8057f5f40a4d5dc87fd876b28144ea4df446d84
1 #!/bin/sh
3 # chkconfig: 345 81 45
4 # description: Starts and stops the Samba wrepld daemon to provide \
5 # WINS replication services between WINS partner servers.
7 # Source function library.
8 if [ -f /etc/init.d/functions ] ; then
9 . /etc/init.d/functions
10 elif [ -f /etc/rc.d/init.d/functions ] ; then
11 . /etc/rc.d/init.d/functions
12 else
13 exit 0
16 # Source networking configuration.
17 . /etc/sysconfig/network
19 # Check that networking is up.
20 [ ${NETWORKING} = "no" ] && exit 0
22 # Check that smb.conf exists.
23 [ -f /etc/samba/smb.conf ] || exit 0
25 RETVAL=0
28 start() {
29 echo -n "Starting WINS Replication services: "
30 RETVAL=1
31 if [ "`grep -i 'wins partners' /etc/samba/smb.conf | egrep -v [\#\;]`" ]; then
32 daemon wrepld
33 RETVAL=$?
34 else
35 echo "WINS replication is not configured in /etc/samba/smb.conf, not starting"
37 echo
38 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/wrepld || \
39 RETVAL=1
40 return $RETVAL
42 stop() {
43 echo -n "Shutting down WINS replication services: "
44 RETVAL=1
45 if [ "`grep -i 'wins partners' /etc/samba/smb.conf | egrep -v [\#\;]`" ]; then
46 killproc wrepld
47 RETVAL=$?
49 echo
50 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/wrepld
51 return $RETVAL
53 restart() {
54 stop
55 start
57 reload() {
58 export TMPDIR="/var/tmp"
59 echo -n "Reloading WINS replication: "
60 killproc wrepld -HUP
61 RETVAL=$?
62 echo
63 return $RETVAL
65 mdkstatus() {
66 status wrepld
69 case "$1" in
70 start)
71 start
73 stop)
74 stop
76 restart)
77 restart
79 reload)
80 reload
82 status)
83 mdkstatus
85 condrestart)
86 [ -f /var/lock/subsys/wrepld ] && restart || :
89 echo "Usage: $0 {start|stop|restart|status|condrestart}"
90 exit 1
91 esac
93 exit $?