summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/UNIT/eventscripts/stubs/sleep
blob: 0d0e82bba42b50aa1d1ef0ac69d19fc5e477397b (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if [ "$FAKE_SLEEP_REALLY" = "yes" ]; then
	/bin/sleep "$@"
elif [ -n "$FAKE_SLEEP_FORCE" ]; then
	/bin/sleep "$FAKE_SLEEP_FORCE"
else
	:
fi