Fix lint issues due to merging of PR #649

This commit is contained in:
Travis Fields 2015-02-19 10:55:24 -08:00
parent cb142f414d
commit 51d66a53ab
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ class mysql::backup::mysqlbackup (
'password' => $backuppassword,
}
}
$options = mysql_deepmerge($default_options, $override_options)
$options = mysql_deepmerge($default_options, $mysql::server::override_options)
file { 'mysqlbackup-config-file':
path => '/etc/mysql/conf.d/meb.cnf',

View file

@ -19,7 +19,7 @@ class mysql::server::backup (
$provider = 'mysqldump',
) {
create_resources("class", {
create_resources('class', {
"mysql::backup::${provider}" => {
'backupuser' => $backupuser,
'backuppassword' => $backuppassword,