Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add purge and recurse options to the include directory creation when …
…MariaDB package.
  • Loading branch information
@bschonec
bschonec committed Nov 12, 2025
commit 8755f90b193673c89e10f9190404a12196ce8435
6 changes: 4 additions & 2 deletions manifests/server/config.pp
Original file line numberDiff line numberDiff line change
Expand Up@@ -86,8 +86,10 @@
if $includedir == undef or $includedir == '' or
($configparentdir != $includedir and $configparentdir != dirname($includedir)){
file{$configparentdir:
ensure => directory,
mode => '0755',
ensure => directory,
mode => '0755',
recurse => $mysql::server::purge_conf_dir,
purge => $mysql::server::purge_conf_dir,
}
}
}
Expand Down