summaryrefslogtreecommitdiffstats
path: root/auth/docker/dstop.sh
blob: acec6c76fa2910bf442f00c66ed932be5b84c723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Pull in Properties
. ./d.props

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

for AAF_COMPONENT in ${AAF_COMPONENTS}; do
    docker stop aaf_$AAF_COMPONENT
done