blob: 4c8d4425775d04e7347d2dcbf760f6f685f737bc [file] [log] [blame]
Instrumental97083ef2018-04-25 15:22:38 -05001#!/bin/bash
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