From d41fe427319b9915a6b1bf3613043cb859177354 Mon Sep 17 00:00:00 2001 From: Ayush Mukherjee Date: Tue, 7 Dec 2021 23:12:46 +0530 Subject: [PATCH] remove space between mkdir -p --- consul-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul-bootstrap.sh b/consul-bootstrap.sh index 1de6349..f00be74 100755 --- a/consul-bootstrap.sh +++ b/consul-bootstrap.sh @@ -6,7 +6,7 @@ # server-ip : server ip address # create directory if doesn't exist and set permissions -mkdir -p /opt/consul/{config, data} && chmod 700 /opt/consul +mkdir -p /opt/consul/{config,data} && chmod 700 /opt/consul # parameter setup consulopts="-config-dir=/opt/consul/config -data-dir=/opt/consul/data"