From 87b4c48b2b96318738bb90a6437ed073016946fe Mon Sep 17 00:00:00 2001 From: Teddysun Date: Wed, 7 Nov 2018 21:39:50 +0900 Subject: [PATCH] Update comments Signed-off-by: Teddysun --- docker/l2tp/alpine/l2tp.sh | 2 +- docker/l2tp/l2tp.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/l2tp/alpine/l2tp.sh b/docker/l2tp/alpine/l2tp.sh index 0f37905..5f70359 100644 --- a/docker/l2tp/alpine/l2tp.sh +++ b/docker/l2tp/alpine/l2tp.sh @@ -28,7 +28,7 @@ rand(){ } is_64bit(){ - if [ "$(getconf WORD_BIT)" == "32" ] && [ "$(getconf LONG_BIT)" == "64" ]; then + if [ "$(getconf WORD_BIT)" = "32" ] && [ "$(getconf LONG_BIT)" = "64" ]; then return 0 else return 1 diff --git a/docker/l2tp/l2tp.sh b/docker/l2tp/l2tp.sh index 3be44e1..103559b 100644 --- a/docker/l2tp/l2tp.sh +++ b/docker/l2tp/l2tp.sh @@ -28,7 +28,7 @@ rand(){ } is_64bit(){ - if [ "$(getconf WORD_BIT)" == "32" ] && [ "$(getconf LONG_BIT)" == "64" ]; then + if [ "$(getconf WORD_BIT)" = "32" ] && [ "$(getconf LONG_BIT)" = "64" ]; then return 0 else return 1