summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/UNIT/eventscripts/stubs/sleep
blob: e4542444de789dad50aea675a3f48bccc6b4770c (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