webapps/evoadmin-mail: package can now installed via public.evolix.org/evolix repo starting from Bookworm #172

Closed
whirigoyen wants to merge 22 commits from evoadmin-mail-repo into unstable
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 782b3264f3 - Show all commits

View file

@ -59,5 +59,5 @@ mysql_binlog_format: mixed
mysql_server_id: null
mysql_bind_address: null
mysql_repl_password: ''
mysql_read_only: 0
mysql_read_only: False

View file

@ -38,7 +38,7 @@ lower_case_table_names = {{ mysql_lower_case_table_names }}
{% if mysql_innodb_log_file_size %}
innodb_log_file_size = {{ mysql_innodb_log_file_size }}
{% endif %}
read_only = {{ mysql_read_only }}
read_only = {{ mysql_read_only | bool | ternary('1','0') }}
{% if mysql_performance_schema %}
performance_schema = ON
performance-schema-instrument='stage/%=ON'