From a23c1e428da390268b7a1880204f3e7eb8daac7f Mon Sep 17 00:00:00 2001 From: Nils Strelow <1096841+nstrelow@users.noreply.github.com> Date: Fri, 4 Sep 2020 11:09:53 +0200 Subject: [PATCH] Fix typo --- installer.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer.sh b/installer.sh index c8bf056..ed1c9bb 100644 --- a/installer.sh +++ b/installer.sh @@ -54,10 +54,10 @@ EOF info "Restarting docker service" systemctl restart "$DOCKER_SERVICE" else - STORRAGE_DRIVER=$(docker info -f "{{json .}}" | jq -r -e .Driver) + STORAGE_DRIVER=$(docker info -f "{{json .}}" | jq -r -e .Driver) LOGGING_DRIVER=$(docker info -f "{{json .}}" | jq -r -e .LoggingDriver) - if [[ "$STORRAGE_DRIVER" != "overlay2" ]]; then - warn "Docker is using $STORRAGE_DRIVER and not 'overlay2' as the storrage driver, this is not supported." + if [[ "$STORAGE_DRIVER" != "overlay2" ]]; then + warn "Docker is using $STORAGE_DRIVER and not 'overlay2' as the storage driver, this is not supported." fi if [[ "$LOGGING_DRIVER" != "journald" ]]; then warn "Docker is using $LOGGING_DRIVER and not 'journald' as the logging driver, this is not supported."