From 70a1f2c2d903894ccd9e757b3e06fc56e8ebc8e5 Mon Sep 17 00:00:00 2001 From: Nils Strelow <1096841+nstrelow@users.noreply.github.com> Date: Fri, 4 Sep 2020 12:25:41 +0200 Subject: [PATCH] Fix typo (#109) --- 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."