summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/eventscripts/stubs/pidof
blob: b6ad6d83a8dafc91d3a44f76ef890fc5d978d35d (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

case "$1" in
    nfsd)
	echo "$FAKE_NFSD_THREAD_PIDS"
	;;
    *)
	echo "pidof: \"$1\" not implemented"
	exit 1
esac