From 438257ad8f86b742935f2f44eaa6a6eb077d9336 Mon Sep 17 00:00:00 2001 From: Lusheng Ji Date: Tue, 20 Feb 2018 14:42:49 -0500 Subject: Change default DMaaP hostname The changes are for the purpose of allowing DMAAPHOST environmental variable to accept either hostname and IP address. If it is IP address, the resolution for default dmaap hostname is written to /etc/hosts; if hostname,an alias is created in /etc/host.aliases for the default dmaap hostname. (for the hostname aliasing to work, chnage default dmaap hostname to onap-dmaap, no domain). Change-Id: I58583cc5b678a29b54d8baecbd0b7bec621f7c8f Signed-off-by: Lusheng Ji Issue-ID: DCAEGEN2-235 --- src/main/scripts/docker-entry.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/main/scripts') diff --git a/src/main/scripts/docker-entry.sh b/src/main/scripts/docker-entry.sh index 26dcb896..3b73005f 100644 --- a/src/main/scripts/docker-entry.sh +++ b/src/main/scripts/docker-entry.sh @@ -24,7 +24,11 @@ if [ ! -z "$COLLECTOR_IP" ]; then fi if [ ! -z "$DMAAPHOST" ]; then - echo $DMAAPHOST onap.dmaap.org >> /etc/hosts + if [ -z "$(echo $DMAAPHOST | sed -e 's/[0-9\.]//g')" ]; then + echo "$DMAAPHOST onap-dmaap" >> /etc/hosts + else + echo "onap-dmaap $DMAAPHOST" >> /etc/host.aliases + fi else echo "DMAAPHOST ENV NOT SET!! PUBLISH WILL NOT BE SUPPORTED" fi -- cgit 1.2.3-korg