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

DOCKER=${DOCKER:=docker}
if [ "$1" == "" ]; then
    AAF_COMPONENTS=$(cat components)
else
    AAF_COMPONENTS="$@"
fi

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