aboutsummaryrefslogtreecommitdiff
path: root/src/samba/samba
blob: 6098ee0cb83b926e8537a7af506550b9a357ffd9 (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
#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions
[ -f /etc/conf.d/samba ] && . /etc/conf.d/samba

[ -z "$SAMBA_DAEMONS" ] && SAMBA_DAEMONS=(smbd nmbd)

case "$1" in
	start)
		rc=0
		stat_busy "Starting Samba Server"
                if [ ! -x /var/log/samba ] ; then
                        install -m755 -d /var/log/samba
                fi
		for d in ${SAMBA_DAEMONS[@]}; do
			PID=`pidof -o %PPID /usr/sbin/$d`
			[ -z "$PID" ] && /usr/sbin/$d -D
			rc=$(($rc+$?))
		done
		if [ $rc -gt 0 ]; then
			stat_fail
		else
			add_daemon samba
			stat_done
		fi
	;;
	stop)
		rc=0
		stat_busy "Stopping Samba Server"
		for d in ${SAMBA_DAEMONS[@]}; do
			PID=`pidof -o %PPID /usr/sbin/$d`
			[ -z "$PID" ] || kill $PID &> /dev/null
			rc=$(($rc+$?))
		done
		if [ $rc -gt 0 ]; then
			stat_fail
		else
			rm /run/samba/smbd.pid &>/dev/null
			rm /run/samba/nmbd.pid &>/dev/null
			rm /run/samba/winbindd.pid &>/dev/null
			rm_daemon samba
			stat_done
		fi
	;;
	restart)
		$0 stop
		sleep 1
		$0 start
	;;
	*)
		echo "usage: $0 {start|stop|restart}"
esac
exit 0