blob: 44f61ed5f592be2f1141c21158e35f57cc988f9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class mysql::server::debian inherits mysql::server::clientpackage {
File['mysql_data_dir'] {
path => '/var/lib/mysql',
}
File['mysql_ibdata1'] {
path => '/var/lib/mysql/ibdata1',
}
file { 'mysql_debian_cnf':
path => '/etc/mysql/debian.cnf',
ensure => file,
notify => Service['mysql'],
owner => root, group => 0, mode => 0600;
}
}
|