[BUG] inconsistent use of mysql_unix_socket in database.sls and user.sls
Opened this issue · 0 comments
thr27 commented
The state files for database and user use different setting for the usage of mysql socket connection.
mysql-formula\mysql\database.sls
uses socket definition from mysql:config.:ections:mysqld:socket
{%- set mysql_unix_socket = mysql.config.sections.mysqld.socket %}
whereas
mysql-formula\mysql\user.sls
uses socket definition from mysql:server:unix_socket
{%- set mysql_unix_socket = salt['pillar.get']('mysql:server:unix_socket', '') %}
Shouldn't both use the same definition?