From 97e17bb94238fbe1b878d007e331a54845bbfcba Mon Sep 17 00:00:00 2001 From: Kenneth Wilke Date: Tue, 27 Aug 2013 14:54:29 -0500 Subject: [PATCH] fixed pillar grabber in debian config --- mysql/files/Debian-my.cnf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mysql/files/Debian-my.cnf b/mysql/files/Debian-my.cnf index 2ec3049..520ea4b 100644 --- a/mysql/files/Debian-my.cnf +++ b/mysql/files/Debian-my.cnf @@ -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 #