Skip to content
Permalink
c4cb248f76
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 22 lines (17 sloc) 424 Bytes
#!/bin/bash
# Run the attribute slammer forever and ever running every 10 seconds
cd /opt/attributeSlammer/
touch slammer.log
tail -f slammer.log &
# wait for grouper ws to be available...typically only during first run while
# grouper is still boot strapping
until nc -vz tier-demo-grouper 8080
do
echo "Grouper WS is unavailable - sleeping"
sleep 5
done
while true
do
perl attribute_slam.pl
sleep 10
done