diff options
author | Instrumental <jcgmisc@stl.gathman.org> | 2018-04-06 09:27:50 -0500 |
---|---|---|
committer | Instrumental <jcgmisc@stl.gathman.org> | 2018-04-06 09:28:08 -0500 |
commit | 9149644a58494040c401a74ed13bc359ba538e57 (patch) | |
tree | dd7a9f9fb251dd4e8262476101ccb9dd4a63d2df /auth/docker/dstart.sh | |
parent | ac836d0f27919da9525f5625aaef51a7b8b228ca (diff) |
CQL changes
Issue-ID: AAF-213
Change-Id: Ib40a84f4af26791812e4bd0b5aea0564f8ba7bda
Signed-off-by: Instrumental <jcgmisc@stl.gathman.org>
Diffstat (limited to 'auth/docker/dstart.sh')
-rw-r--r-- | auth/docker/dstart.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/auth/docker/dstart.sh b/auth/docker/dstart.sh new file mode 100644 index 00000000..9fcc328b --- /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 |