Fix unescaped $-signs

This commit is contained in:
Erik Huelsmann 2023-09-30 22:53:49 +02:00
parent 7a17a8630f
commit 9cc752a0ff

View File

@ -71,27 +71,27 @@ fi
if [[ ! -f ./local/conf/ledgersmb.yaml ]]; then if [[ ! -f ./local/conf/ledgersmb.yaml ]]; then
cat <<EOF >./local/conf/ledgersmb.yaml cat <<EOF >./local/conf/ledgersmb.yaml
paths: paths:
$class: Beam::Wire \$class: Beam::Wire
config: config:
UI: ./UI/ UI: ./UI/
UI_cache: lsmb_templates/ UI_cache: lsmb_templates/
db: db:
$class: LedgerSMB::Database::Factory \$class: LedgerSMB::Database::Factory
connect_data: connect_data:
host: $POSTGRES_HOST host: ${POSTGRES_HOST:-postgres}
port: $POSTGRES_PORT port: ${POSTGRES_PORT:-5432}
mail: mail:
transport: transport:
$class: LedgerSMB::Mailer::TransportSMTP \$class: LedgerSMB::Mailer::TransportSMTP
host: $LSMB_MAIL_SMTPHOST host: $LSMB_MAIL_SMTPHOST
port: $LSMB_MAIL_SMTPPORT port: $LSMB_MAIL_SMTPPORT
helo: $LSMB_MAIL_SMTPSENDER_HOSTNAME helo: $LSMB_MAIL_SMTPSENDER_HOSTNAME
tls: $LSMB_MAIL_SMTPTLS tls: $LSMB_MAIL_SMTPTLS
miscellaneous: miscellaneous:
$class: Beam::Wire \$class: Beam::Wire
config: config:
proxy_ip: ${PROXY_IP:-172.17.0.1/12} proxy_ip: ${PROXY_IP:-172.17.0.1/12}
@ -101,9 +101,9 @@ ui:
lifecycle: eager lifecycle: eager
args: args:
cache: cache:
$ref: paths/UI_cache \$ref: paths/UI_cache
root: root:
$ref: paths/UI \$ref: paths/UI
EOF EOF
if [[ -n "" ]] if [[ -n "" ]]
@ -113,7 +113,7 @@ mail:
transport: transport:
sasl_password: '' sasl_password: ''
sasl_username: sasl_username:
$class: Authen::SASL \$class: Authen::SASL
mechanism: $LSMB_MAIL_SMTPAUTHMECH mechanism: $LSMB_MAIL_SMTPAUTHMECH
callback: callback:
user: $LSMB_MAIL_SMTPUSER user: $LSMB_MAIL_SMTPUSER