We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27ee01b + 338f70e commit af4e7e5Copy full SHA for af4e7e5
manifests/server/managed_dirs.pp
@@ -23,6 +23,8 @@
23
}
24
25
26
+ } else {
27
+ $managed_dirs_path = []
28
29
30
$logbin = pick($options['mysqld']['log-bin'], $options['mysqld']['log_bin'], false)
@@ -31,7 +33,7 @@
31
33
$logbindir = dirname($logbin)
32
34
35
#Stop puppet from managing directory if just a filename/prefix is specified or is not already managed
- if ($logbindir != '.' or !($logbindir in $managed_dirs_path)) {
36
+ if (!($logbindir == '.' or $logbindir in $managed_dirs_path)) {
37
file { $logbindir:
38
ensure => directory,
39
mode => '0700',
0 commit comments