module-mysql/manifests/server/debian.pp

15 lines
418 B
ObjectPascal
Raw Normal View History

2009-12-10 18:22:25 +01:00
class mysql::server::debian inherits mysql::server::clientpackage {
File['mysql_data_dir'] {
path => '/var/lib/mysql',
}
File['mysql_ibdata1'] {
path => '/var/lib/mysql/ibdata1',
}
2009-12-11 17:33:10 +01:00
file { 'mysql_debian_cnf':
path => '/etc/mysql/debian.cnf',
ensure => file,
notify => Service['mysql'],
owner => root, group => 0, mode => 0600;
}
2009-12-10 18:22:25 +01:00
}