Skip to content

Commit

Permalink
fix: Add back missing config for innodb_buffer_pool_size
Browse files Browse the repository at this point in the history
  • Loading branch information
dale-c-anderson committed Aug 15, 2024
1 parent 31fa83b commit 08b3bdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

vars:
mysql_root_password: root

# client_only: true
roles:
- role: ansible-role-mariadb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# {{ ansible_managed }}
# Overrides for MariaDB Server on Ubuntu 18.04
# Overrides for MariaDB Server on Ubuntu

[mysqld]
{% if mysql_datadir is defined and mysql_datadir != '/var/lib/mysql' %}
Expand Down Expand Up @@ -27,6 +27,10 @@ max_allowed_packet = {{ mysql_max_allowed_packet }}
innodb_log_file_size = {{ mysql_innodb_log_file_size }}
{% endif %}

{% if mysql_innodb_buffer_pool_size is defined %}
innodb_buffer_pool_size = {{ mysql_innodb_buffer_pool_size }}
{% endif %}

{% if mysql_general_log_file is defined %}
general_log_file = {{ mysql_general_log_file }}
{% endif %}
Expand Down

0 comments on commit 08b3bdc

Please sign in to comment.