...
- Add section and instructions for generating a public/private key pair and using ssh-copy-id to install it on all machines you will be using in the test suite.
- Add instructions on how to add passwordless sudo on the accounts the launcher will be run on for the target hosts.
- Add instructions based on Distro of which files to copy from utils/systemd into /usr/lib/systemd to allow the test harness to use systemctl.
- Move these instructions into a file doc/dev/testing.md to make it accessible to other developers.
- Add and update examples for invoking tests as the description is no longer accurate.
- Add instructions on modifying your PYTHONPATH for the tests to have access to the daos python bindings in the in-tree build.
- Add instructions on creating /etc/daos paths needed since test harness does not use sudo on mkdir commands even though it uses sudo on cp commands.
- Add instructions to create all of the necessary groups needed by the unit files
getent group daos_metrics >/dev/null || groupadd -r daos_metrics
getent group daos_server >/dev/null || groupadd -r daos_server
getent passwd daos_server >/dev/null || useradd -s /sbin/nologin -r -g daos_server -G daos_metrics daos_server
getent group daos_agent >/dev/null || groupadd -r daos_agent
getent passwd daos_agent >/dev/null || useradd -s /sbin/nologin -r -g daos_agent daos_agent