Merge pull request #687 from igalic/provider-regr

mysql backup: fix regression in mysql_user call
This commit is contained in:
Morgan Haskel 2015-04-08 15:35:25 -07:00
commit c2ec74b1b5
3 changed files with 0 additions and 3 deletions

View file

@ -21,7 +21,6 @@ class mysql::backup::mysqlbackup (
mysql_user { "${backupuser}@localhost":
ensure => $ensure,
password_hash => mysql_password($backuppassword),
provider => 'mysql',
require => Class['mysql::server::root_password'],
}

View file

@ -21,7 +21,6 @@ class mysql::backup::mysqldump (
mysql_user { "${backupuser}@localhost":
ensure => $ensure,
password_hash => mysql_password($backuppassword),
provider => 'mysql',
require => Class['mysql::server::root_password'],
}

View file

@ -22,7 +22,6 @@ class mysql::backup::xtrabackup (
mysql_user { "${backupuser}@localhost":
ensure => $ensure,
password_hash => mysql_password($backuppassword),
provider => 'mysql',
require => Class['mysql::server::root_password'],
}