Skip to content
Permalink
07f29a340f
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 21 lines (14 sloc) 520 Bytes
#!/bin/bash
B='\033[1;33m'
N='\033[0m'
echo -e "${B} * Uploading objects...${N}"
$(dirname "$0")/upload-objects.sh
echo -e "${B} * Testing LDAP and SQL resources...${N}"
$(dirname "$0")/test-resources-1.sh
echo -e "${B} * Recomputing Grouper admin group and user object...${N}"
$(dirname "$0")/recompute.sh
echo -e "${B} * Waiting 120 seconds for changes to propagate to Grouper...${N}"
sleep 120
echo -e "${B} * Testing Grouper resource...${N}"
$(dirname "$0")/test-resource-grouper.sh
echo -e "${B} * Done${N}"