diff --git a/manifests/backup/xtrabackup.pp b/manifests/backup/xtrabackup.pp index c73831f38..db9e99815 100644 --- a/manifests/backup/xtrabackup.pp +++ b/manifests/backup/xtrabackup.pp @@ -97,11 +97,17 @@ } } else { + # RENAME CLIENT Renamed to BINLOG MONITOR in MariaDB 10.5.2 + if versioncmp($facts['mysql_version'], '10.5.2') >= 0 and (/(?i:mariadb)/ in $facts['mysqld_version']) { + $privs = ['BINLOG MONITOR', 'RELOAD', 'PROCESS', 'LOCK TABLES'] + } else { + $privs = ['RELOAD', 'PROCESS', 'LOCK TABLES', 'REPLICATION CLIENT'] + } mysql_grant { "${backupuser}@localhost/*.*": ensure => $ensure, user => "${backupuser}@localhost", table => '*.*', - privileges => ['RELOAD', 'PROCESS', 'LOCK TABLES', 'REPLICATION CLIENT'], + privileges => $privs, require => Mysql_user["${backupuser}@localhost"], } }