[bitnami/redis] Fix 9279 (#9355)

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
This commit is contained in:
Miguel Ruiz
2022-03-09 16:03:52 +01:00
committed by GitHub
parent c08d6e7b7a
commit 38643ef9f4
2 changed files with 6 additions and 6 deletions

View File

@@ -24,4 +24,4 @@ maintainers:
name: redis
sources:
- https://github.com/bitnami/bitnami-docker-redis
version: 16.5.1
version: 16.5.2

View File

@@ -33,7 +33,7 @@ data:
{{- end }}
ping
)
if [[ "$?" -eq "124" ]]; then
if [ "$?" -eq "124" ]; then
echo "Timed out"
exit 1
fi
@@ -63,7 +63,7 @@ data:
{{- end }}
ping
)
if [[ "$?" -eq "124" ]]; then
if [ "$?" -eq "124" ]; then
echo "Timed out"
exit 1
fi
@@ -97,7 +97,7 @@ data:
{{- end }}
ping
)
if [[ "$?" -eq "124" ]]; then
if [ "$?" -eq "124" ]; then
echo "Timed out"
exit 1
fi
@@ -141,7 +141,7 @@ data:
{{- end }}
ping
)
if [[ "$?" -eq "124" ]]; then
if [ "$?" -eq "124" ]; then
echo "Timed out"
exit 1
fi
@@ -169,7 +169,7 @@ data:
{{- end }}
ping
)
if [[ "$?" -eq "124" ]]; then
if [ "$?" -eq "124" ]; then
echo "Timed out"
exit 1
fi