fixed pillar grabber in debian config

This commit is contained in:
Kenneth Wilke 2013-08-27 14:54:29 -05:00
parent 125917b7d6
commit 97e17bb942

View file

@ -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
#