mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
3b2f7330cc
These test dropping of IPs and TDB checking. New stubs for date, tdbdump, tdbtool. Enhance ip stub to handle "ip addr show to ..." Tweak some infrastructure. Signed-off-by: Martin Schwenke <martin@meltin.net> Pair-programmed-with: Amitay Isaacs <amitay@gmail.com> (This used to be ctdb commit aabf0bf41cb8ec344f06b69492fb6c2a27f9e900)
10 lines
123 B
Bash
Executable File
10 lines
123 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$FAKE_TDB_IS_OK" = "yes" ] ; then
|
|
echo "TDB good"
|
|
exit 0
|
|
else
|
|
echo "TDB busted"
|
|
exit 1
|
|
fi
|