blob: acec6c76fa2910bf442f00c66ed932be5b84c723 [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
5if [ "$1" == "" ]; then
Instrumentale44d2f72018-08-16 17:22:45 -05006 AAF_COMPONENTS=$(cat components)
Instrumentaldf9e8272018-04-05 20:52:32 -05007else
Instrumental4ad47632018-07-13 15:49:26 -05008 AAF_COMPONENTS="$@"
Instrumentaldf9e8272018-04-05 20:52:32 -05009fi
10
11for AAF_COMPONENT in ${AAF_COMPONENTS}; do
Instrumental4ad47632018-07-13 15:49:26 -050012 docker stop aaf_$AAF_COMPONENT
Instrumentaldf9e8272018-04-05 20:52:32 -050013done