/usr/bin/rpdcp is in pdsh 2.29-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #! /bin/bash
# If PDSH_RCMD_TYPE is set don't check default
if test $PDSH_RCMD_TYPE; then
exec -a rpdcp /usr/bin/pdsh.bin "$@"
fi
# If a default is set run with it.
if test -f /etc/pdsh/rcmd_default; then
PDSH_RCMD_TYPE=`cat /etc/pdsh/rcmd_default`
PDSH_RCMD_TYPE=$PDSH_RCMD_TYPE exec -a rpdcp /usr/bin/pdsh.bin "$@"
else
exec -a rpdcp /usr/bin/pdsh.bin "$@"
fi
|