summaryrefslogtreecommitdiff
path: root/ctdb/tests/UNIT/eventscripts/scripts/50.samba.sh
blob: 3ffe18a201e69485c5c378919b9e0aba3a05c66d (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
setup ()
{
	service_name="samba"

	if [ "$1" != "down" ] ; then

		debug "Marking Samba services as up, listening and managed by CTDB"

		# All possible service names for all known distros.
		for i in "smb" "nmb" "samba" "smbd" "nmbd" ; do
			service "$i" force-started
		done

		setup_tcp_listen 445 139

		# Some things in 50.samba are backgrounded and waited
		# for.  If we don't sleep at all then timeouts can
		# happen.  This avoids that...  :-)
		export FAKE_SLEEP_FORCE=0.1
	else
		debug "Marking Samba services as down, not listening and not managed by CTDB"

		# All possible service names for all known distros.
		for i in "smb" "nmb" "samba" "smbd" "nmbd" ; do
			service "$i" force-stopped
		done

		setup_tcp_listen
	fi

	setup_script_options <<EOF
CTDB_SAMBA_SKIP_SHARE_CHECK="no"
EOF

	setup_shares

}

samba_setup_fake_threads ()
{
	export FAKE_SMBD_THREAD_PIDS="$*"

	_nl="
"
	_out=""
	_count=0
	for _pid ; do
		[ "$_count" -lt 5 ] || break
		_t=$(program_stack_trace "smbd" $_pid)
		_out="${_out:+${_out}${_nl}}${_t}"
		_count=$((_count + 1))
	done
	SAMBA_STACK_TRACES="$_out"
}