Fix Locate Cassandra config issue
Issue-ID: AAF-216
Change-Id: I52719ee951a5135be5561fca6ab71744a014fe41
Signed-off-by: Instrumental <jcgmisc@stl.gathman.org>
diff --git a/auth/docker/d.props b/auth/docker/d.props
index 90bc551..6fc232e 100644
--- a/auth/docker/d.props
+++ b/auth/docker/d.props
@@ -8,6 +8,6 @@
# Local Env info
HOSTNAME=meriadoc.mithril.sbc.com
HOST_IP=172.17.0.3
-CASS_HOST="cass.aaf.osaaf.org:172.17.0.2"
+CASS_HOST=cass.aaf.osaaf.org:172.17.0.2
diff --git a/auth/docker/dbash.sh b/auth/docker/dbash.sh
index da166b5..642cba4 100644
--- a/auth/docker/dbash.sh
+++ b/auth/docker/dbash.sh
@@ -1 +1 @@
-docker exec -it aaf bash
\ No newline at end of file
+docker exec -it aaf_$1 bash
diff --git a/auth/docker/dstart.sh b/auth/docker/dstart.sh
new file mode 100644
index 0000000..9fcc328
--- /dev/null
+++ b/auth/docker/dstart.sh
@@ -0,0 +1,12 @@
+#!/bin/bash dstop.sh
+. d.props
+
+if [ "$1" == "" ]; then
+ AAF_COMPONENTS=`ls -r ../aaf_${VERSION}/bin | grep -v '\.'`
+else
+ AAF_COMPONENTS=$1
+fi
+
+for AAF_COMPONENT in ${AAF_COMPONENTS}; do
+ docker start aaf_$AAF_COMPONENT
+done