Puppet Class: role::mysql_strict
- Defined in:
- puppet/modules/role/manifests/mysql_strict.pp
Overview
Class: role::mysql_strict
Configures MySQL/MariaDB to use strict mode. See phabricator.wikimedia.org/T112637 Note: this is meant for testing new code. Not all old code is updated to work in strict mode yet.
7 8 9 10 11 12 13 |
# File 'puppet/modules/role/manifests/mysql_strict.pp', line 7
class role::mysql_strict {
mediawiki::settings { 'mysql_strict':
values => {
wgSQLMode => 'TRADITIONAL,ONLY_FULL_GROUP_BY',
},
}
}
|