Skip to content

Commit

Permalink
Upgrade MariaDB (v11.4.3-0 -> v11.4.4-0) and fix variable typo (maria…
Browse files Browse the repository at this point in the history
…db_root_passsword -> mariadb_root_password)

Related to mother-of-all-self-hosting/ansible-role-mariadb@86ee456

Fixes #303
  • Loading branch information
spantaleev committed Nov 16, 2024
1 parent 914b03a commit 2a48b95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/services/mariadb.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To enable this service, add the following configuration to your `vars.yml` file
mariadb_enabled: true

# Put a strong password below, generated with `pwgen -s 64 1` or in another way
mariadb_root_passsword: ''
mariadb_root_password: ''

########################################################################
# #
Expand Down
2 changes: 1 addition & 1 deletion templates/group_vars_mash_servers
Original file line number Diff line number Diff line change
Expand Up @@ -1543,7 +1543,7 @@ backup_borg_postgresql_databases: "{{ postgres_managed_databases | map(attribute
backup_borg_mysql_enabled: "{{ mariadb_enabled }}"
backup_borg_mysql_databases_hostname: "{{ mariadb_identifier if mariadb_enabled else '' }}"
backup_borg_mysql_databases_username: "root"
backup_borg_mysql_databases_password: "{{ mariadb_root_passsword if mariadb_enabled else '' }}"
backup_borg_mysql_databases_password: "{{ mariadb_root_password if mariadb_enabled else '' }}"
backup_borg_mysql_databases_port: 3306
backup_borg_mysql_databases: "{{ mariadb_managed_databases | map(attribute='name') if mariadb_enabled else [] }}"
# /role-specific:mariadb
Expand Down
2 changes: 1 addition & 1 deletion templates/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
name: loki
activation_prefix: loki_
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-mariadb.git
version: v11.4.3-0
version: v11.4.4-0
name: mariadb
activation_prefix: mariadb_
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-matterbridge.git
Expand Down

0 comments on commit 2a48b95

Please sign in to comment.