Refactor CSIT start/stop
[aaf/authz.git] / auth / csit / dstop.sh
diff --git a/auth/csit/dstop.sh b/auth/csit/dstop.sh
deleted file mode 100644 (file)
index 85e6f28..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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