Sophie

Sophie

distrib > Mandriva > 2011.0 > x86_64 > by-pkgid > be0591f48cc9eefbd59198196e26c650 > files > 9

glusterfs-common-3.0.0-2mdv2011.0.x86_64.rpm

#!/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