diff options
Diffstat (limited to 'auth/csit/dstop.sh')
-rw-r--r-- | auth/csit/dstop.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/auth/csit/dstop.sh b/auth/csit/dstop.sh new file mode 100644 index 00000000..85e6f285 --- /dev/null +++ b/auth/csit/dstop.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# Pull in Properties +. ./d.props + +DOCKER=${DOCKER:=docker} +if [ "$1" == "" ]; then + AAF_COMPONENTS=$(cat components) +else + AAF_COMPONENTS="$@" +fi + +for AAF_COMPONENT in ${AAF_COMPONENTS}; do + $DOCKER stop aaf_$AAF_COMPONENT +done |