From dd23ad8ba27133f0f3214e66459cd511f98a8bce Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 27 Oct 2020 17:06:37 +0100 Subject: [fix] doc - add missing quotation marks in docs/build-templates Escape the all the quotation marks (" --> \") in docs/build-templates. The scripts are *bash evaluated* (e.g):: eval "echo \"$(< "${REPO_ROOT}/docs/build-templates/searx.rst")\"" Backslash, quotation marks and other need to be escaped. Signed-off-by: Markus Heiser --- docs/build-templates/filtron.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'docs/build-templates/filtron.rst') diff --git a/docs/build-templates/filtron.rst b/docs/build-templates/filtron.rst index 643688ff7..79b254399 100644 --- a/docs/build-templates/filtron.rst +++ b/docs/build-templates/filtron.rst @@ -7,11 +7,11 @@ .. code-block:: sh $ sudo -H useradd --shell /bin/bash --system \\ - --home-dir "$SERVICE_HOME" \\ - --comment "Privacy-respecting metasearch engine" $SERVICE_USER + --home-dir \"$SERVICE_HOME\" \\ + --comment \"Privacy-respecting metasearch engine\" $SERVICE_USER - $ sudo -H mkdir "$SERVICE_HOME" - $ sudo -H chown -R "$SERVICE_GROUP:$SERVICE_GROUP" "$SERVICE_HOME" + $ sudo -H mkdir \"$SERVICE_HOME\" + $ sudo -H chown -R \"$SERVICE_GROUP:$SERVICE_GROUP\" \"$SERVICE_HOME\" .. END create user @@ -23,16 +23,16 @@ .. code-block:: bash - $ cat > "$GO_ENV" < \"$GO_ENV\" <> ~/.profile (${SERVICE_USER}) $ mkdir ${SERVICE_HOME}/local - (${SERVICE_USER}) $ wget --progress=bar -O "${GO_TAR}" \\ - "${GO_PKG_URL}" - (${SERVICE_USER}) $ tar -C ${SERVICE_HOME}/local -xzf "${GO_TAR}" + (${SERVICE_USER}) $ wget --progress=bar -O \"${GO_TAR}\" \\ + \"${GO_PKG_URL}\" + (${SERVICE_USER}) $ tar -C ${SERVICE_HOME}/local -xzf \"${GO_TAR}\" (${SERVICE_USER}) $ which go ${SERVICE_HOME}/local/go/bin/go @@ -46,7 +46,7 @@ .. code-block:: bash - $ sudo -i -u "${SERVICE_USER}" + $ sudo -i -u \"${SERVICE_USER}\" (${SERVICE_USER}) $ go get -v -u github.com/asciimoo/filtron .. END install filtron -- cgit v1.2.3