blob: 85e6f2858ec31e828fd126722180918369bc0cb3 [file] [log] [blame]
Instrumental4ad47632018-07-13 15:49:26 -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
Instrumental94053612018-10-08 11:27:18 -05005DOCKER=${DOCKER:=docker}
Instrumentaldf9e8272018-04-05 20:52:32 -05006if [ "$1" == "" ]; then
Instrumentale44d2f72018-08-16 17:22:45 -05007 AAF_COMPONENTS=$(cat components)
Instrumentaldf9e8272018-04-05 20:52:32 -05008else
Instrumental4ad47632018-07-13 15:49:26 -05009 AAF_COMPONENTS="$@"
Instrumentaldf9e8272018-04-05 20:52:32 -050010fi
11
12for AAF_COMPONENT in ${AAF_COMPONENTS}; do
Instrumental94053612018-10-08 11:27:18 -050013 $DOCKER stop aaf_$AAF_COMPONENT
Instrumentaldf9e8272018-04-05 20:52:32 -050014done