94162bd08f
This brings Kolla images inline with FHS and should make finding locations of things more consistent and reliable with the linux world at large. Change-Id: Iece5b4da4bace0fb8b1f41a65ab2c852ec73e6f8 Closes-Bug: #1485742
13 lines
370 B
Django/Jinja
13 lines
370 B
Django/Jinja
{% set mysql_dir = 'mysql/conf.d' if kolla_base_distro in ['ubuntu', 'debian'] else 'my.cnf.d' %}
|
|
{
|
|
"command": "/usr/bin/mysqld_safe",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/galera.cnf",
|
|
"dest": "/etc/{{ mysql_dir }}/galera.cnf",
|
|
"owner": "mysql",
|
|
"perm": "0600"
|
|
}
|
|
]
|
|
}
|