Fix shs for REPO
[aaf/authz.git] / auth / docker / dstart.sh
1 #!/bin/bash
2 # Pull in Props
3 . ./d.props
4
5 if [ "$1" == "" ]; then
6     AAF_COMPONENTS=$(cat components)
7 else
8     AAF_COMPONENTS="$@"
9 fi
10
11 for AAF_COMPONENT in ${AAF_COMPONENTS}; do
12     docker start aaf_$AAF_COMPONENT
13 done