~felipe-alfaro-gmail/charms/xenial/neutron-api/trunk

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/contrib/hardening/mysql/templates/hardening.cnf

  • Committer: Felipe Alfaro Solana
  • Date: 2017-04-05 19:45:40 UTC
  • Revision ID: felipe.alfaro@gmail.com-20170405194540-85i0nhnp98ipob0y
Neutron API charm.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###############################################################################
 
2
# WARNING: This configuration file is maintained by Juju. Local changes may
 
3
#          be overwritten.
 
4
###############################################################################
 
5
[mysqld]
 
6
{% for setting, value in mysql_settings -%}
 
7
{% if value == 'True' -%}
 
8
{{ setting }}
 
9
{% elif value != 'None' and value != None -%}
 
10
{{ setting }} = {{ value }}
 
11
{% endif -%}
 
12
{% endfor -%}