summaryrefslogtreecommitdiffstats
path: root/auth/docker
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-08-14 15:13:02 -0500
committerInstrumental <jonathan.gathman@att.com>2018-08-14 15:13:12 -0500
commit7a239e7ddb0662e95db9b7624a77c8cacc43122c (patch)
treeb3a40652f20c3ac004c86d558eec15c5158a61a4 /auth/docker
parent4ecd90dc6a7e71bd05de03f9ec9120683670f7ee (diff)
Add config agent core to dpush
Issue-ID: AAF-433 Change-Id: I0ed47de5c48edd6494673587f24881f40f4ed232 Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/docker')
-rw-r--r--auth/docker/dpush.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/auth/docker/dpush.sh b/auth/docker/dpush.sh
index 6beae857..0cfd1fc1 100644
--- a/auth/docker/dpush.sh
+++ b/auth/docker/dpush.sh
@@ -5,7 +5,7 @@
. ./d.props
if ["$1" == ""]; then
- AAF_COMPONENTS=`ls ../aaf_*HOT/bin | grep -v '\.'`
+ AAF_COMPONENTS="config agent core `ls ../aaf_*HOT/bin | grep -v '\.'`"
else
AAF_COMPONENTS=$1
fi
@@ -14,5 +14,4 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do
# docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${OLD_VERSION}
docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
# docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${NEW_VERSION}
-
done