From f40ffd8028d3dd4f3eef4a3409c531af941d23f0 Mon Sep 17 00:00:00 2001 From: M S Vishwanath Bhat Date: Thu, 12 Jan 2012 23:30:00 +0530 Subject: renaming helper_scrips->helper_scripts and cleaning up the whitespaces Change-Id: I6004e4066fab30e14716ef6475c1281270974d2b Signed-off-by: M S Vishwanath Bhat --- helper_scripts/install_parallel_glusterfs.sh | 64 ++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100755 helper_scripts/install_parallel_glusterfs.sh (limited to 'helper_scripts/install_parallel_glusterfs.sh') diff --git a/helper_scripts/install_parallel_glusterfs.sh b/helper_scripts/install_parallel_glusterfs.sh new file mode 100755 index 0000000..de5840a --- /dev/null +++ b/helper_scripts/install_parallel_glusterfs.sh @@ -0,0 +1,64 @@ +#!/bin/bash + +function _init () +{ + set -u; + VERSION=$1; +} + +function install_glusterfs () +{ + local remote_server=; + + if [ $# -eq 1 ]; then + remote_server=$1; + fi + + if [ $remote_server ]; then + ssh $remote_server cp -f /root/scripts/download_and_install.sh /root/; + ssh $remote_server /root/download_and_install.sh $VERSION; + return 0; + fi + + j=0; + for i in $(cat /root/machines) + do + j=$(($j+1)); + (install_glusterfs $i)& + done + +} + +function install_my_glusterfs () +{ + old_PWD=$PWD; + + cd /root; + cp /root/scripts/download_and_install.sh /root/; + /root/download_and_install.sh $VERSION; + + cd $old_PWD; + return 0; +} + +function main () +{ + stat --printf=%i /root/machines 2>/dev/null 1>/dev/null; + if [ $? -ne 0 ]; then + echo "servers file is not present /root. Cannot execute further."; + + exit 1; + fi + + install_glusterfs; + for i in $(1 $j) + do + wait %$j; + done + + install_my_glusterfs; + + return 0; +} + +_init "$@" && main "$@" -- cgit