Praqma / staci

Containerizing the Atlassian tools stack. Jira, Confluence, Bamboo and a MySQL database.
MIT License
12 stars 5 forks source link

Cluster systemInfo.html does not get right hostname #32

Closed hoeghh closed 8 years ago

hoeghh commented 8 years ago

if [ ! "$provider_type" == "none" ]; then bambooip=$(docker-machine ip "$node_prefix-Atlassian") elif [ "$cluster" == "1" ]; then bambooip=$(docker-machine ip "$node_prefix-bamboo") else bambooip="localhost" fi

should be

if [ "$cluster" == "1" ]; then bambooip=$(docker-machine ip "$node_prefix-bamboo") elif [ ! "$provider_type" == "none" ]; then bambooip=$(docker-machine ip "$node_prefix-Atlassian") else bambooip="localhost" fi