From ef006af0719d161fc6da207d5e06e5a6be93c15d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 29 Dec 2020 00:14:03 +0100 Subject: [PATCH] installer.sh: Remove trailing spaces --- installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.sh b/installer.sh index e99c221..e377a6e 100644 --- a/installer.sh +++ b/installer.sh @@ -84,10 +84,10 @@ if [ ! -f "$FILE_DOCKER_CONF" ]; then else STORAGE_DRIVER=$(docker info -f "{{json .}}" | jq -r -e .Driver) LOGGING_DRIVER=$(docker info -f "{{json .}}" | jq -r -e .LoggingDriver) - if [[ "$STORAGE_DRIVER" != "overlay2" ]]; then + 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 + if [[ "$LOGGING_DRIVER" != "journald" ]]; then warn "Docker is using $LOGGING_DRIVER and not 'journald' as the logging driver, this is not supported." fi fi