mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
968401ccdc
Add a corresponding new unit test for statd. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
14 lines
199 B
Bash
Executable File
14 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
nfsd)
|
|
echo "$FAKE_NFSD_THREAD_PIDS"
|
|
;;
|
|
rpc.statd|rpc.rquotad|rpc.mountd)
|
|
echo "$FAKE_RPC_THREAD_PIDS"
|
|
;;
|
|
*)
|
|
echo "pidof: \"$1\" not implemented"
|
|
exit 1
|
|
esac
|