Skip to content
This repository was archived by the owner on Jan 3, 2025. It is now read-only.

Fixing incorrect variable operator #47

Merged
merged 1 commit into from
Aug 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixing incorrect variable operator
  • Loading branch information
homerr committed Aug 7, 2021
commit 2c83249b0c06687961574da0186d0b7802f0590a
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
@@ -111,6 +111,7 @@ app_setup_block: |

# changelog
changelogs:
- { date: "07.08.21:", desc: "Fixing incorrect database password variable operator." }
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
2 changes: 1 addition & 1 deletion root/etc/cont-init.d/40-config
Original file line number Diff line number Diff line change
@@ -12,6 +12,6 @@ AUTH_LDAP_UID_ATTRIBUTE=${AUTH_LDAP_UID_ATTRIBUTE:=uid}
DB_BACKEND=${DB_BACKEND:=SQLite}
DB_PGSQL_DATABASE=${DB_PGSQL_DATABASE:=quassel}
DB_PGSQL_HOSTNAME=${DB_PGSQL_HOSTNAME:=localhost}
DB_PGSQL_PASSWORD=""
DB_PGSQL_PASSWORD=${DB_PGSQL_PASSWORD:=password}
DB_PGSQL_PORT=${DB_PGSQL_PORT:=5432}
DB_PGSQL_USERNAME=${DB_PGSQL_USERNAME:=quassel}