Skip to content

Commit c04c1a6

Browse files
Merge pull request #1242 from fraenki/fix_xtrabackup
Fix xtrabackup regression introduced in #1207
2 parents 135f1c6 + ae79cea commit c04c1a6

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

manifests/backup/xtrabackup.pp

+27-26
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,33 @@
33
# @api private
44
#
55
class mysql::backup::xtrabackup (
6-
$xtrabackup_package_name = $mysql::params::xtrabackup_package_name,
7-
$backupuser = undef,
8-
$backuppassword = undef,
9-
$backupdir = '',
10-
$maxallowedpacket = '1M',
11-
$backupmethod = 'xtrabackup',
12-
$backupdirmode = '0700',
13-
$backupdirowner = 'root',
14-
$backupdirgroup = $mysql::params::root_group,
15-
$backupcompress = true,
16-
$backuprotate = 30,
17-
$backupscript_template = 'mysql/xtrabackup.sh.erb',
18-
$ignore_events = true,
19-
$delete_before_dump = false,
20-
$backupdatabases = [],
21-
$file_per_database = false,
22-
$include_triggers = true,
23-
$include_routines = false,
24-
$ensure = 'present',
25-
$time = ['23', '5'],
26-
$prescript = false,
27-
$postscript = false,
28-
$execpath = '/usr/bin:/usr/sbin:/bin:/sbin',
29-
$optional_args = [],
30-
$additional_cron_args = '--backup',
31-
$incremental_backups = true
6+
$xtrabackup_package_name = $mysql::params::xtrabackup_package_name,
7+
$backupuser = undef,
8+
$backuppassword = undef,
9+
$backupdir = '',
10+
$maxallowedpacket = '1M',
11+
$backupmethod = 'xtrabackup',
12+
$backupdirmode = '0700',
13+
$backupdirowner = 'root',
14+
$backupdirgroup = $mysql::params::root_group,
15+
$backupcompress = true,
16+
$backuprotate = 30,
17+
$backupscript_template = 'mysql/xtrabackup.sh.erb',
18+
$backup_success_file_path = undef,
19+
$ignore_events = true,
20+
$delete_before_dump = false,
21+
$backupdatabases = [],
22+
$file_per_database = false,
23+
$include_triggers = true,
24+
$include_routines = false,
25+
$ensure = 'present',
26+
$time = ['23', '5'],
27+
$prescript = false,
28+
$postscript = false,
29+
$execpath = '/usr/bin:/usr/sbin:/bin:/sbin',
30+
$optional_args = [],
31+
$additional_cron_args = '--backup',
32+
$incremental_backups = true
3233
) inherits mysql::params {
3334

3435
ensure_packages($xtrabackup_package_name)

0 commit comments

Comments
 (0)