add docker scripts for CSIT
Moving csit from docker folder
Issue-ID: AAF-388
Change-Id: I7efb8e7fec54ef54d3d2704ca53f1b80b0b3fea2
Signed-off-by: Sai Gandham <sg481n@att.com>
diff --git a/auth/csit/dstop.sh b/auth/csit/dstop.sh
new file mode 100644
index 0000000..85e6f28
--- /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