From 2c2496d28f2c635dc771360461d73674c031bffb Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 27 Mar 2018 17:16:25 -0400 Subject: [PATCH] fix syntax for entrypoint ands --- src/Admin/entrypoint.sh | 2 +- src/Api/entrypoint.sh | 2 +- src/Icons/entrypoint.sh | 2 +- src/Identity/entrypoint.sh | 2 +- util/Attachments/entrypoint.sh | 2 +- util/MsSql/entrypoint.sh | 2 +- util/Nginx/entrypoint.sh | 2 +- util/Setup/entrypoint.sh | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Admin/entrypoint.sh b/src/Admin/entrypoint.sh index f15b668e99..e9f1a45468 100644 --- a/src/Admin/entrypoint.sh +++ b/src/Admin/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ] diff --git a/src/Api/entrypoint.sh b/src/Api/entrypoint.sh index cbae3eb963..7bd7a8a9d8 100644 --- a/src/Api/entrypoint.sh +++ b/src/Api/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ] diff --git a/src/Icons/entrypoint.sh b/src/Icons/entrypoint.sh index e6af146c8c..bf9680b1b8 100644 --- a/src/Icons/entrypoint.sh +++ b/src/Icons/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ] diff --git a/src/Identity/entrypoint.sh b/src/Identity/entrypoint.sh index 7b68b28e0f..f5b74ab99c 100644 --- a/src/Identity/entrypoint.sh +++ b/src/Identity/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ] diff --git a/util/Attachments/entrypoint.sh b/util/Attachments/entrypoint.sh index 96d45465c9..ef37a8255e 100644 --- a/util/Attachments/entrypoint.sh +++ b/util/Attachments/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ] diff --git a/util/MsSql/entrypoint.sh b/util/MsSql/entrypoint.sh index e2cab95c2d..f3af4e9dc0 100644 --- a/util/MsSql/entrypoint.sh +++ b/util/MsSql/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ] diff --git a/util/Nginx/entrypoint.sh b/util/Nginx/entrypoint.sh index 67ea05f9de..3cb5368cf1 100644 --- a/util/Nginx/entrypoint.sh +++ b/util/Nginx/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ] diff --git a/util/Setup/entrypoint.sh b/util/Setup/entrypoint.sh index 9a8169d245..4b2d963312 100644 --- a/util/Setup/entrypoint.sh +++ b/util/Setup/entrypoint.sh @@ -2,7 +2,7 @@ NOUSER=`id -u bitwarden > /dev/null 2>&1; echo $?` LUID=${LOCAL_UID:-999} -if [[ $NOUSER == 0 && `id -u bitwarden` != $LUID ]] +if [ $NOUSER == 0 ] && [ `id -u bitwarden` != $LUID ] then usermod -u $LUID bitwarden elif [ $NOUSER == 1 ]