Skip to content

Commit a221327

Browse files
committedJun 3, 2020
Fixed a default value for the parameter $managed_dirs from undef to $mysql::params::managed_dirs.
Updated REFERENCE.md
1 parent 8974f16 commit a221327

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎REFERENCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ Data type: `Any`
462462
Manage MySQL system directories which described in the section `[mysqld]` of the configuration file
463463
`my.cnf`
464464

465-
Default value: `undef`
465+
Default value: `$mysql::params::managed_dirs`
466466

467467
##### `options`
468468

‎manifests/server.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
$remove_default_accounts = false,
8989
$restart = $mysql::params::restart,
9090
$root_group = $mysql::params::root_group,
91-
$managed_dirs = undef,
91+
$managed_dirs = $mysql::params::managed_dirs,
9292
$mysql_group = $mysql::params::mysql_group,
9393
$mycnf_owner = $mysql::params::mycnf_owner,
9494
$mycnf_group = $mysql::params::mycnf_group,

0 commit comments

Comments
 (0)