Skip to content
Permalink
29ba916cd3
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 18 lines (12 sloc) 429 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} * Testing Grouper resource...${N}"
$(dirname "$0")/test-resource-grouper.sh
echo -e "${B} * Done${N}"