From 038bf0ff2b7bd9a5ed77bfd8393bfec975cae3a7 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 17 Apr 2017 23:00:50 +0200 Subject: [PATCH] fix guest bug --- smb_config/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smb_config/run.sh b/smb_config/run.sh index 72efea0..e292222 100644 --- a/smb_config/run.sh +++ b/smb_config/run.sh @@ -10,7 +10,7 @@ PASSWORD=$(jq --raw-output ".password // empty" $CONFIG_PATH) sed -i "s/%%WORKGROUP%%/$WORKGROUP/g" /etc/smb.conf -if [ GUEST == "true" ]; then +if [ $GUEST == "true" ]; then echo " group ok = yes" >> /etc/smb.conf echo " public = yes" >> /etc/smb.conf else