1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

ctdb-tests: Create 50.samba.sh

Contains testing support used only by tests for 50.samba event script.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
Martin Schwenke 2018-03-19 20:49:48 +11:00 committed by Amitay Isaacs
parent a51e4ea042
commit 32d8483b07
2 changed files with 57 additions and 62 deletions

View File

@ -0,0 +1,57 @@
setup_samba ()
{
setup_ctdb
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
export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
export CTDB_MANAGES_SAMBA="yes"
export FAKE_TCP_LISTEN="0.0.0.0:445 0.0.0.0:139"
export FAKE_WBINFO_FAIL="no"
# 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
export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
export CTDB_MANAGES_SAMBA=""
export FAKE_TCP_LISTEN=""
export FAKE_WBINFO_FAIL="yes"
fi
}
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"
}

View File

@ -545,68 +545,6 @@ EOF
######################################################################
# Samba/winbind fakery
setup_samba ()
{
setup_ctdb
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
export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
export CTDB_MANAGES_SAMBA="yes"
export FAKE_TCP_LISTEN="0.0.0.0:445 0.0.0.0:139"
export FAKE_WBINFO_FAIL="no"
# 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
export CTDB_SAMBA_SKIP_SHARE_CHECK="no"
export CTDB_MANAGES_SAMBA=""
export FAKE_TCP_LISTEN=""
export FAKE_WBINFO_FAIL="yes"
fi
}
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"
}
######################################################################
# NFS fakery
setup_nfs ()