summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/UNIT/eventscripts/stubs/nfs-fake-callout
blob: a4d43d0c5c7ad48bffb085581e8dcbbacd49a20b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

case "$1" in
register)
	echo "ALL"
	exit
	;;
esac

if [ "$NFS_FAKE_CALLOUT_MAGIC" = "$1" ]; then
	echo "$1"
	exit 1
fi

exit 0