Skip to content

Commit c09f03f

Browse files
committed
Fix missing parameters on other backup providers
1 parent f003ff6 commit c09f03f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

manifests/backup/mysqlbackup.pp

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
$optional_args = [],
3030
$incremental_backups = false,
3131
$install_cron = true,
32+
$compression_command = undef,
33+
$compression_extension = undef,
3234
) inherits mysql::params {
3335
mysql_user { "${backupuser}@localhost":
3436
ensure => $ensure,

manifests/backup/xtrabackup.pp

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
$additional_cron_args = '--backup',
3232
$incremental_backups = true,
3333
$install_cron = true,
34+
$compression_command = undef,
35+
$compression_extension = undef,
3436
) inherits mysql::params {
3537
ensure_packages($xtrabackup_package_name)
3638

0 commit comments

Comments
 (0)