Skip to content

Commit 6af116c

Browse files
Fix managed dirs (#1305)
* Added a case statement to include executing manage_dirs on the class config only for Debian, because there's dependency of Debian tool unless => "/usr/bin/dpkg -s ${mysql::server::package_name}", Created the parameter managed_dirs for the class mysql::server to allow use the class mysql::server::managed_dirs * Updated REFERENCES for the new parameter managed_dirs. * Added a default case for the case statement of managing dirs for Debian in mysql::server::config * Fixed a default value for the parameter $managed_dirs from undef to $mysql::params::managed_dirs. Updated REFERENCE.md * (maint) Add tests to verify mariadb Co-authored-by: Eugeny Kisel <[email protected]> Co-authored-by: sheena <[email protected]>
1 parent ddca3f9 commit 6af116c

File tree

4 files changed

+71
-12
lines changed

4 files changed

+71
-12
lines changed

REFERENCE.md

+9
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,15 @@ Whether the MySQL configuration file should be managed. Valid values are `true`,
465465

466466
Default value: $mysql::params::manage_config_file
467467

468+
##### `managed_dirs`
469+
470+
Data type: `Any`
471+
472+
Manage MySQL system directories which described in the section `[mysqld]` of the configuration file
473+
`my.cnf`
474+
475+
Default value: `$mysql::params::managed_dirs`
476+
468477
##### `options`
469478

470479
Data type: `Mysql::Options`

manifests/server.pp

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
$remove_default_accounts = false,
8989
$restart = $mysql::params::restart,
9090
$root_group = $mysql::params::root_group,
91+
$managed_dirs = $mysql::params::managed_dirs,
9192
$mysql_group = $mysql::params::mysql_group,
9293
$mycnf_owner = $mysql::params::mycnf_owner,
9394
$mycnf_group = $mysql::params::mycnf_group,

manifests/server/config.pp

+17-12
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,26 @@
3636
}
3737

3838
#Debian: Creating world readable directories before installing.
39-
if $managed_dirs {
40-
$managed_dirs.each | $entry | {
41-
$dir = $options['mysqld']["${entry}"]
42-
if ( $dir and $dir != '/usr' and $dir != '/tmp' ) {
43-
exec {"${entry}-managed_dir-mkdir":
44-
command => "/bin/mkdir -p ${dir}",
45-
unless => "/usr/bin/dpkg -s ${mysql::server::package_name}",
46-
notify => Exec["${entry}-managed_dir-chmod"],
47-
}
48-
exec {"${entry}-managed_dir-chmod":
49-
command => "/bin/chmod 777 ${dir}",
50-
refreshonly => true,
39+
case $::operatingsystem {
40+
'Debian': {
41+
if $managed_dirs {
42+
$managed_dirs.each | $entry | {
43+
$dir = $options['mysqld']["${entry}"]
44+
if ( $dir and $dir != '/usr' and $dir != '/tmp' ) {
45+
exec {"${entry}-managed_dir-mkdir":
46+
command => "/bin/mkdir -p ${dir}",
47+
unless => "/usr/bin/dpkg -s ${mysql::server::package_name}",
48+
notify => Exec["${entry}-managed_dir-chmod"],
49+
}
50+
exec {"${entry}-managed_dir-chmod":
51+
command => "/bin/chmod 777 ${dir}",
52+
refreshonly => true,
53+
}
54+
}
5155
}
5256
}
5357
}
58+
default: {}
5459
}
5560

5661
if $mysql::server::manage_config_file {

spec/acceptance/mysql_mariadb_spec.rb

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
require 'spec_helper_acceptance'
2+
3+
describe 'mysql server class', if: ((os[:family] == 'debian' && os[:release].to_i > 8) || (os[:family] == 'redhat' && os[:release].to_i > 6)) do
4+
describe 'mariadb' do
5+
let(:pp) do
6+
<<-MANIFEST
7+
$osname = $facts['os']['name'].downcase
8+
yumrepo {'mariadb':
9+
baseurl => "http://yum.mariadb.org/10.4/$osname${facts['os']['release']['major']}-aarch64/",
10+
gpgkey => 'https://yum.mariadb.org/RPM-GPG-KEY-MariaDB',
11+
descr => "MariaDB 10.4",
12+
enabled => 1,
13+
gpgcheck => 1,
14+
}->
15+
class { '::mysql::server':
16+
require => Yumrepo['mariadb'],
17+
package_name => 'mariadb-server',
18+
service_name => 'mariadb',
19+
root_password => 'strongpassword',
20+
remove_default_accounts => true,
21+
managed_dirs => ['/var/log','/var/run/mysql'],
22+
override_options => {
23+
mysqld => {
24+
log-error => '/var/log/mariadb.log',
25+
pid-file => '/var/run/mysql/mysqld.pid',
26+
},
27+
mysqld_safe => {
28+
log-error => '/var/log/mariadb.log',
29+
},
30+
},
31+
}
32+
MANIFEST
33+
end
34+
35+
it 'apply manifest' do
36+
apply_manifest(pp)
37+
end
38+
it 'mariadb connection' do
39+
result = run_shell('mysql --user="root" --password="strongpassword" -e "status"')
40+
expect(result.stdout).to match(%r{MariaDB})
41+
expect(result.stderr).to be_empty
42+
end
43+
end
44+
end

0 commit comments

Comments
 (0)