Skip to content

Commit 1c3bf95

Browse files
committed
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?
1 parent d28e64b commit 1c3bf95

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

manifests/backup/mysqlbackup.pp

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
mysql_user { "${backupuser}@localhost":
2222
ensure => $ensure,
2323
password_hash => mysql_password($backuppassword),
24-
provider => 'mysql',
2524
require => Class['mysql::server::root_password'],
2625
}
2726

manifests/backup/mysqldump.pp

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
mysql_user { "${backupuser}@localhost":
2222
ensure => $ensure,
2323
password_hash => mysql_password($backuppassword),
24-
provider => 'mysql',
2524
require => Class['mysql::server::root_password'],
2625
}
2726

manifests/backup/xtrabackup.pp

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
mysql_user { "${backupuser}@localhost":
2323
ensure => $ensure,
2424
password_hash => mysql_password($backuppassword),
25-
provider => 'mysql',
2625
require => Class['mysql::server::root_password'],
2726
}
2827

0 commit comments

Comments
 (0)