Skip to content

Commit c2ec74b

Browse files
author
Morgan Haskel
committed
Merge pull request #687 from igalic/provider-regr
mysql backup: fix regression in mysql_user call
2 parents 5de035c + 1c3bf95 commit c2ec74b

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)