blob: 58ac0bf75326f01677c21b621706bb702b6e80fb [file] [log] [blame]
Instrumentaldf9e8272018-04-05 20:52:32 -05001#!/bin/bash dstop.sh
Instrumental12f7f462018-04-23 15:43:47 -05002# Pull in Properties
Instrumental23a1c2e2018-04-11 14:13:46 -05003. ./d.props
Instrumentaldf9e8272018-04-05 20:52:32 -05004
5if [ "$1" == "" ]; then
6 AAF_COMPONENTS=`ls ../aaf_${VERSION}/bin | grep -v '\.'`
7else
8 AAF_COMPONENTS=$1
9fi
10
11for AAF_COMPONENT in ${AAF_COMPONENTS}; do
12 docker stop aaf_$AAF_COMPONENT
13done