/usr/bin/mpjboot is in libmpj-java 0.44+dfsg-3.
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 | #!/bin/sh
export MPJ_HOME=/usr/share/mpj
if [ $# -ne 1 ]; then
echo "Usage: mpjboot <machines_file>";
exit 127
fi
java -jar $MPJ_HOME/lib/daemonmanager.jar -boot -m "$@"
|