summaryrefslogtreecommitdiffstats
path: root/auth/docker/dstop.sh
blob: c6e1cfeb440836a80c2279dedff66f921b5d0723 (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=$(ls ../aaf_${VERSION}/bin | grep -v '\.')
else
    AAF_COMPONENTS="$@"
fi

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