9 lines
199 B
Puppet
9 lines
199 B
Puppet
# centos specific things
|
|
class mysql::server::centos inherits mysql::server::clientpackage {
|
|
Service['mysql']{
|
|
name => 'mysqld',
|
|
}
|
|
File['mysql_main_cnf']{
|
|
path => '/etc/my.cnf',
|
|
}
|
|
}
|