'containerName' instead of 'rname' for consistency
This commit is contained in:
parent
fb8091ecce
commit
b371e18ab0
@ -230,7 +230,7 @@ function cleanup {
|
|||||||
function operateDocker {
|
function operateDocker {
|
||||||
# determine action to take
|
# determine action to take
|
||||||
if [ "$1" = "stop" ]; then
|
if [ "$1" = "stop" ]; then
|
||||||
rName="$(docker ps --format '{{.Names}}' --filter name=${COMPOSE_PROJECT_NAME}_${2}-mailcow_1)"
|
containerName="$(docker ps --format '{{.Names}}' --filter name=${COMPOSE_PROJECT_NAME}_${2}-mailcow_1)"
|
||||||
|
|
||||||
echo -e "${op}[$(stamp)] Stopping ${2}-mailcow container...${normal}" \
|
echo -e "${op}[$(stamp)] Stopping ${2}-mailcow container...${normal}" \
|
||||||
>> "$logFile"
|
>> "$logFile"
|
||||||
@ -238,18 +238,18 @@ if [ "$1" = "stop" ]; then
|
|||||||
2>> "$logFile"
|
2>> "$logFile"
|
||||||
# verify container stopped (should return true)
|
# verify container stopped (should return true)
|
||||||
dockerResultState=$(docker inspect -f '{{ .State.Running }}' \
|
dockerResultState=$(docker inspect -f '{{ .State.Running }}' \
|
||||||
$rName)
|
$containerName)
|
||||||
# verify clean stop (exit code 0)
|
# verify clean stop (exit code 0)
|
||||||
dockerResultExit=$(docker inspect -f '{{ .State.ExitCode }}' \
|
dockerResultExit=$(docker inspect -f '{{ .State.ExitCode }}' \
|
||||||
$rName)
|
$containerName)
|
||||||
elif [ "$1" = "start" ]; then
|
elif [ "$1" = "start" ]; then
|
||||||
echo -e "${op}[$(stamp)] Starting ${2}-mailcow container...${normal}" \
|
echo -e "${op}[$(stamp)] Starting ${2}-mailcow container...${normal}" \
|
||||||
>> "$logFile"
|
>> "$logFile"
|
||||||
docker-compose start ${2}-mailcow 2>> "$logFile"
|
docker-compose start ${2}-mailcow 2>> "$logFile"
|
||||||
# verify
|
# verify
|
||||||
rName="$(docker ps --format '{{.Names}}' --filter name=${COMPOSE_PROJECT_NAME}_${2}-mailcow_1)"
|
containerName="$(docker ps --format '{{.Names}}' --filter name=${COMPOSE_PROJECT_NAME}_${2}-mailcow_1)"
|
||||||
dockerResultState=$(docker inspect -f '{{ .State.Running }}' \
|
dockerResultState=$(docker inspect -f '{{ .State.Running }}' \
|
||||||
$rName)
|
$containerName)
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,7 +260,7 @@ fi
|
|||||||
|
|
||||||
# store the logfile in the same directory as this script using the script's name
|
# store the logfile in the same directory as this script using the script's name
|
||||||
# with the extension .log
|
# with the extension .log
|
||||||
scriptPath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
scriptPath="$( cd "$( dicontainerName "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
scriptName="$( basename ${0} )"
|
scriptName="$( basename ${0} )"
|
||||||
logFile="$scriptPath/${scriptName%.*}.log"
|
logFile="$scriptPath/${scriptName%.*}.log"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user