#!/bin/sh
#
# This script takes each node from the list 'vwall'
# and runs the scripts 'setup_client.sh' on that node.
# Then, it runs the crappfaker for Chromium.
#

for x in `cat <path_to_file>/vwall | grep -v \#`; do
echo "Connecting boba $x ..."
ssh boba$x "<path_to_file>/setup_client.sh" &
sleep 1
done

crappfaker -mothership boba142
