mysql backup: fix regression in mysql_user call

due to a mishappen rebase, in #649, we introduced a regression fixed
which was fixed in #655.

how come our tests don't catch this?
This commit is contained in:
Igor Galić 2015-03-05 14:33:44 +01:00
parent d28e64bee3
commit 1c3bf95e21
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'],
}