allow for different my.cnf files according to the OS release

This commit is contained in:
Micah Anderson 2010-09-22 12:52:50 -04:00
parent f1f1d212c1
commit 31de67a0f9

View file

@ -6,7 +6,10 @@ class mysql::server::base {
path => '/etc/mysql/my.cnf',
source => [
"puppet://$server/modules/site-mysql/${fqdn}/my.cnf",
"puppet://$server/modules/site-mysql/my.cnf.${operatingsystem}.{lsbdistcodename}",
"puppet://$server/modules/site-mysql/my.cnf.${operatingsystem}",
"puppet://$server/modules/site-mysql/my.cnf",
"puppet://$server/modules/mysql/config/my.cnf.${operatingsystem}.{lsbdistcodename}",
"puppet://$server/modules/mysql/config/my.cnf.${operatingsystem}",
"puppet://$server/modules/mysql/config/my.cnf"
],