blob: 41aa6a45ca3f825f154bab948bb4c1bb7eac070a [file] [log] [blame]
Instrumental4d7da3d2018-04-06 08:22:42 -05001#!/bin/bash dstop.sh
Instrumental12f7f462018-04-23 15:43:47 -05002# Pull in Props
3. ./d.props
Instrumental4d7da3d2018-04-06 08:22:42 -05004
5if [ "$1" == "" ]; then
6 AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
7else
8 AAF_COMPONENTS=$1
9fi
10
11for AAF_COMPONENT in ${AAF_COMPONENTS}; do
12 docker start aaf_$AAF_COMPONENT
13done