Puppet Class: profile::mariadb::maintenance
- Defined in:
- modules/profile/manifests/mariadb/maintenance.pp
Overview
maintenance needed on maintenance hosts for mediawiki databases
2 3 4 5 6 7 8 9 10 11 |
# File 'modules/profile/manifests/mariadb/maintenance.pp', line 2
class profile::mariadb::maintenance(
$ensure = lookup('profile::mariadb::maintenance::ensure'),
) {
# The role should install profile::mariadb::client
# TODO: MySQL maintenance will go here (e.g. statistics
# gathering, schema consistencing checking, etc.). Those
# will happen but they are still in development (it should
# be mostly cron jobs running scripts).
}
|