mirror of https://github.com/samply/bridgehead.git
hotfix: Switch to old Project Name
This commit is contained in:
parent
7743e2cf01
commit
25081c1bf4
|
@ -66,11 +66,13 @@ case "$ACTION" in
|
||||||
checkRequirements
|
checkRequirements
|
||||||
hc_send log "Bridgehead $PROJECT startup: Requirements checked out. Now starting bridgehead ..."
|
hc_send log "Bridgehead $PROJECT startup: Requirements checked out. Now starting bridgehead ..."
|
||||||
export LDM_LOGIN=$(getLdmPassword)
|
export LDM_LOGIN=$(getLdmPassword)
|
||||||
exec $COMPOSE -p bridgehead-$PROJECT -f ./$PROJECT/docker-compose.yml $OVERRIDE up --abort-on-container-exit
|
exec $COMPOSE -f ./$PROJECT/docker-compose.yml $OVERRIDE up --abort-on-container-exit
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
loadVars
|
loadVars
|
||||||
exec $COMPOSE -p bridgehead-$PROJECT -f ./$PROJECT/docker-compose.yml $OVERRIDE down
|
# HACK: This is tempoarily to properly shut down false bridgehead instances (bridgehead-ccp instead ccp)
|
||||||
|
$COMPOSE -p bridgehead-$PROJECT -f ./$PROJECT/docker-compose.yml $OVERRIDE down
|
||||||
|
exec $COMPOSE -f ./$PROJECT/docker-compose.yml $OVERRIDE down
|
||||||
;;
|
;;
|
||||||
is-running)
|
is-running)
|
||||||
bk_is_running
|
bk_is_running
|
||||||
|
|
|
@ -171,7 +171,7 @@ function retry {
|
||||||
|
|
||||||
function bk_is_running {
|
function bk_is_running {
|
||||||
detectCompose
|
detectCompose
|
||||||
RUNNING="$($COMPOSE -p bridgehead-$PROJECT -f ./$PROJECT/docker-compose.yml $OVERRIDE ps -q)"
|
RUNNING="$($COMPOSE -p $PROJECT -f ./$PROJECT/docker-compose.yml $OVERRIDE ps -q)"
|
||||||
NUMBEROFRUNNING=$(echo "$RUNNING" | wc -l)
|
NUMBEROFRUNNING=$(echo "$RUNNING" | wc -l)
|
||||||
if [ $NUMBEROFRUNNING -ge 2 ]; then
|
if [ $NUMBEROFRUNNING -ge 2 ]; then
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in New Issue