summaryrefslogtreecommitdiffstats
path: root/auth/csit/dstart.sh
blob: 6ca4baee761da89d146433a0c133891f4a5d5192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
# Pull in Props
. ./d.props

DOCKER=${DOCKER:=docker}

if [ "$1" == "" ]; then
    AAF_COMPONENTS=$(cat components)
else
    AAF_COMPONENTS="$@"
fi

for AAF_COMPONENT in ${AAF_COMPONENTS}; do
    $DOCKER start aaf_$AAF_COMPONENT
done