/usr/share/doc/glusterfs/benchmarking/launch-script.sh is in glusterfs-common 3.7.6-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh
# This script is to launch the script in parallel across all the nodes.
mount_point="/mnt/glusterfs"
path_to_script="$mount_point}/benchmark/local-script.sh"
num_hosts=8
for i in $(seq 1 $num_hosts); do
ssh node$i path_to_script &
done
sleep 3;
touch ${mount_point}/benchmark/start-test
|