Skip to content

Commit 0cdf8d6

Browse files
jas01jas01
jas01
authored and
jas01
committed
Fix group on FreeBSD
The server::backup class don't use the correct information from mysql::params about backupdirgroup. Because on FreeBSD the group root doesn't exist it should use wheel instead. This difference are correctly configure inside mysql::params but not inside server::backup
1 parent 277ff26 commit 0cdf8d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manifests/server/backup.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
$backupdir = undef,
7070
$backupdirmode = '0700',
7171
$backupdirowner = 'root',
72-
$backupdirgroup = 'root',
72+
$backupdirgroup = $mysql::params::root_group,
7373
$backupcompress = true,
7474
$backuprotate = 30,
7575
$backupmethod = undef,
@@ -88,7 +88,7 @@
8888
$provider = 'mysqldump',
8989
$maxallowedpacket = '1M',
9090
$optional_args = [],
91-
) {
91+
) inherits mysql::params {
9292

9393
if $prescript and $provider =~ /(mysqldump|mysqlbackup)/ {
9494
warning(translate("The 'prescript' option is not currently implemented for the %{provider} backup provider.",

0 commit comments

Comments
 (0)