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"