module-mysql/manifests/server/debian.pp

17 lines
391 B
ObjectPascal
Raw Normal View History

2013-01-02 17:13:45 +01:00
# debian specific stuff
2009-12-10 18:22:25 +01:00
class mysql::server::debian inherits mysql::server::clientpackage {
2013-01-02 17:13:45 +01:00
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',
notify => Service['mysql'],
owner => root,
group => 0,
mode => '0600';
}
2009-12-10 18:22:25 +01:00
}