#!/bin/bash baseDir=`dirname $0` if [[ "`hostname -s`" == "umrocks" ]] ; then source $baseDir/roll_list.conf.um else source $baseDir/roll_list.conf.msu fi # nowDir=$PWD cd /export/rocks/svn-trunk/rolls-src for aroll in $ROLL_LIST ; do cd $aroll rocks add roll *.iso cd .. done cd $nowDir