mirror of
https://github.com/saltstack-formulas/mysql-formula.git
synced 2025-04-15 17:20:25 +00:00
fixed pillar grabber in debian config
This commit is contained in:
parent
125917b7d6
commit
97e17bb942
1 changed files with 3 additions and 3 deletions
|
@ -33,10 +33,10 @@ nice = 0
|
|||
#
|
||||
# * Basic Settings
|
||||
#
|
||||
user = {{ salt['pillar.get']('mysql:user', 'mysql') }}
|
||||
user = {{ salt['pillar.get']('mysql:server:user', 'mysql') }}
|
||||
pid-file = /var/run/mysqld/mysqld.pid
|
||||
socket = /var/run/mysqld/mysqld.sock
|
||||
port = {{ salt['pillar.get']('mysql:port', '3306') }}
|
||||
port = {{ salt['pillar.get']('mysql:server:port', '3306') }}
|
||||
basedir = /usr
|
||||
datadir = /var/lib/mysql
|
||||
tmpdir = /tmp
|
||||
|
@ -45,7 +45,7 @@ skip-external-locking
|
|||
#
|
||||
# Instead of skip-networking the default is now to listen only on
|
||||
# localhost which is more compatible and is not less secure.
|
||||
bind-address = {{ salt['pillar.get']('mysql:bind-address', '127.0.0.1') }}
|
||||
bind-address = {{ salt['pillar.get']('mysql:server:bind-address', '127.0.0.1') }}
|
||||
#
|
||||
# * Fine Tuning
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue