Skip to content

Commit fb4aa1d

Browse files
author
Erick Banks
authored
Merge pull request #1221 from rick-pri/fix/fix-dependency-issue-in-freebsd-with-log-error-file-creation-from-10.0.0
Fix/fix dependency issue in freebsd with log error file creation from 10.0.0
2 parents 5052906 + 6fbd5a8 commit fb4aa1d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

manifests/server/installdb.pp

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323

2424
if $options['mysqld']['log-error'] {
2525
file { $options['mysqld']['log-error']:
26-
ensure => present,
27-
owner => $mysqluser,
28-
group => $::mysql::server::mysql_group,
29-
mode => 'u+rw',
30-
require => Mysql_datadir[ $datadir ],
26+
ensure => present,
27+
owner => $mysqluser,
28+
group => $::mysql::server::mysql_group,
29+
mode => 'u+rw',
30+
before => Mysql_datadir[ $datadir ],
3131
}
3232
}
3333

0 commit comments

Comments
 (0)