From b832e50b4b341bbab38a627b9fe3eecf0507f782 Mon Sep 17 00:00:00 2001 From: Alexander Tratsevskiy Date: Fri, 11 Nov 2022 16:27:24 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=BE=D0=B1=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=BA=D0=B0=20ini.env?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- profiles/templates/taiga/taiga/sh.install-taiga | 4 ++++ profiles/templates/taiga/taiga/sh.setup-postgresql | 4 ++++ profiles/templates/taiga/taiga/sh.setup-rabbit | 4 ++++ profiles/templates/taiga/taiga/sh.setup-taiga | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/profiles/templates/taiga/taiga/sh.install-taiga b/profiles/templates/taiga/taiga/sh.install-taiga index b45f98b..8913602 100644 --- a/profiles/templates/taiga/taiga/sh.install-taiga +++ b/profiles/templates/taiga/taiga/sh.install-taiga @@ -20,6 +20,10 @@ do sec=$line continue fi + if [[ ${line:0:1} == '#' || $line == '' ]] + then + continue + fi com=${sec}_${line// =/=}; com=${com//= /=}; all="$com; $all" diff --git a/profiles/templates/taiga/taiga/sh.setup-postgresql b/profiles/templates/taiga/taiga/sh.setup-postgresql index 6964665..7525d0a 100644 --- a/profiles/templates/taiga/taiga/sh.setup-postgresql +++ b/profiles/templates/taiga/taiga/sh.setup-postgresql @@ -13,6 +13,10 @@ do sec=$line continue fi + if [[ ${line:0:1} == '#' || $line == '' ]] + then + continue + fi com=${sec}_${line// =/=}; com=${com//= /=}; all="$com; $all" diff --git a/profiles/templates/taiga/taiga/sh.setup-rabbit b/profiles/templates/taiga/taiga/sh.setup-rabbit index ae8448b..8e2fc87 100644 --- a/profiles/templates/taiga/taiga/sh.setup-rabbit +++ b/profiles/templates/taiga/taiga/sh.setup-rabbit @@ -13,6 +13,10 @@ do sec=$line continue fi + if [[ ${line:0:1} == '#' || $line == '' ]] + then + continue + fi com=${sec}_${line// =/=}; com=${com//= /=}; all="$com; $all" diff --git a/profiles/templates/taiga/taiga/sh.setup-taiga b/profiles/templates/taiga/taiga/sh.setup-taiga index 728bd5b..baa4a45 100644 --- a/profiles/templates/taiga/taiga/sh.setup-taiga +++ b/profiles/templates/taiga/taiga/sh.setup-taiga @@ -145,6 +145,10 @@ read_vars(){ sec=$line continue fi + if [[ ${line:0:1} == '#' || $line == '' ]] + then + continue + fi com=${sec}_${line// =/=}; com=${com//= /=}; all="$com; $all"