Use jinja2 comments
parent
4d776a847e
commit
6614bdba33
|
@ -12,7 +12,7 @@ bind-address = {{ mysql_bind_address }}
|
|||
datadir = {{ mysql_datadir }}
|
||||
socket = {{ mysql_socket }}
|
||||
|
||||
# TODO: FIX later
|
||||
{# TODO: FIX later #}
|
||||
# Logging configuration.
|
||||
#{% if mysql_log_error == 'syslog' or mysql_log == 'syslog' %}
|
||||
#syslog
|
||||
|
@ -32,8 +32,6 @@ slow_query_log_file = {{ mysql_slow_query_log_file }}
|
|||
long_query_time = {{ mysql_slow_query_time }}
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
# Disabling symbolic-links is recommended to prevent assorted security risks
|
||||
symbolic-links = 0
|
||||
|
||||
|
@ -66,9 +64,10 @@ innodb_buffer_pool_size = {{ mysql_innodb_buffer_pool_size }}
|
|||
{% if mysql_innodb_additional_mem_pool_size is defined %}
|
||||
innodb_additional_mem_pool_size = {{ mysql_innodb_additional_mem_pool_size }}
|
||||
{% endif %}
|
||||
# It craches after install (mysql 5.5)... TODO FIX -> http://dev.mysql.com/doc/refman/5.6/en/innodb-data-log-reconfiguration.html
|
||||
#innodb_log_file_size = {{ mysql_innodb_log_file_size }}
|
||||
#innodb_log_buffer_size = {{ mysql_innodb_log_buffer_size }}
|
||||
|
||||
{# It craches after install (mysql 5.5)... TODO FIX -> http://dev.mysql.com/doc/refman/5.6/en/innodb-data-log-reconfiguration.html #}
|
||||
innodb_flush_log_at_trx_commit = {{ mysql_innodb_flush_log_at_trx_commit }}
|
||||
innodb_lock_wait_timeout = {{ mysql_innodb_lock_wait_timeout }}
|
||||
|
||||
|
|
Loading…
Reference in New Issue