summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/UNIT/eventscripts/stubs/pidof
blob: 6a25395eb7288c11ae66b70b6f6498802cd1cf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

case "$1" in
nfsd)
	echo "$FAKE_NFSD_THREAD_PIDS"
	;;
rpc.statd | rpc.rquotad | rpc.mountd)
	echo "$FAKE_RPC_THREAD_PIDS"
	;;
smbd)
	echo "$FAKE_SMBD_THREAD_PIDS"
	;;
*)
	echo "pidof: \"$1\" not implemented"
	exit 1
	;;
esac