Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mariadb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
webarch
mariadb
Commits
010e4798
Verified
Commit
010e4798
authored
1 year ago
by
Chris Croome
Browse files
Options
Downloads
Patches
Plain Diff
additional checks for running in check mode added
parent
0a17c287
No related branches found
Branches containing commit
Tags
3.4.0
Tags containing commit
No related merge requests found
Pipeline
#30015
failed
1 year ago
Stage: bookworm
Stage: jammy
Stage: trixie
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.pre-commit-config.yaml
+3
-3
3 additions, 3 deletions
.pre-commit-config.yaml
README.md
+6
-0
6 additions, 0 deletions
README.md
tasks/mysqltuner.yml
+18
-0
18 additions, 0 deletions
tasks/mysqltuner.yml
with
27 additions
and
3 deletions
.pre-commit-config.yaml
+
3
−
3
View file @
010e4798
...
...
@@ -17,19 +17,19 @@ repos:
name
:
YAML Lint
# https://github.com/ansible/ansible-lint/releases
-
repo
:
https://github.com/ansible/ansible-lint.git
rev
:
v6.2
0.3
rev
:
v6.2
1.1
hooks
:
-
id
:
ansible-lint
name
:
Ansible Lint
language
:
python
additional_dependencies
:
# https://github.com/kellyjonbrazil/jc/releases
-
jc==1.23.
4
-
jc==1.23.
6
# https://github.com/jmespath/jmespath.py/tags
-
jmespath==1.0.1
# https://github.com/jackdewinter/pymarkdown/releases
-
repo
:
https://github.com/jackdewinter/pymarkdown.git
rev
:
v0.9.1
3.
4
rev
:
v0.9.14
hooks
:
-
id
:
pymarkdown
name
:
Markdown Lint
...
...
This diff is collapsed.
Click to expand it.
README.md
+
6
−
0
View file @
010e4798
...
...
@@ -36,6 +36,12 @@ mariadb_config:
default_character_set
:
utf8mb4
```
You can get the existing configuration as YAML using:
```
bash
cat
/etc/mysql/mariadb.conf.d/50-server.cnf | jc
--ini
-p
| yq
-o
=
yaml
-P
```
### mariadb_mysqltuner
A boolean,
`mariadb_mysqltuner`
defaults to
`true`
and results in
[
MySQLTuner
](
https://github.com/major/MySQLTuner-perl
)
being installed using a Debian package or from GitHub depending on the version specified using
`mariadb_mysqltuner_version`
.
...
...
This diff is collapsed.
Click to expand it.
tasks/mysqltuner.yml
+
18
−
0
View file @
010e4798
...
...
@@ -147,6 +147,11 @@
depth
:
1
update
:
true
-
name
:
Check that MySQLTuner code is present
ansible.builtin.stat
:
path
:
/usr/local/src/MySQLTuner-perl/mysqltuner.pl
register
:
mariadb_mysqltuner_script
-
name
:
MySQLTuner script in place
ansible.builtin.copy
:
src
:
/usr/local/src/MySQLTuner-perl/mysqltuner.pl
...
...
@@ -155,6 +160,7 @@
mode
:
"
0755"
owner
:
root
group
:
root
when
:
mariadb_mysqltuner_script.stat.exists | bool
-
name
:
Directory for MySQLTuner assets in place
ansible.builtin.file
:
...
...
@@ -164,6 +170,11 @@
owner
:
root
group
:
root
-
name
:
Check that MySQLTuner passwords is present
ansible.builtin.stat
:
path
:
/usr/local/src/MySQLTuner-perl/basic_passwords.txt
register
:
mariadb_mysqltuner_passwords
-
name
:
MySQLTuner basic_passwords.txt file in place
ansible.builtin.copy
:
src
:
/usr/local/src/MySQLTuner-perl/basic_passwords.txt
...
...
@@ -172,6 +183,12 @@
mode
:
"
0644"
owner
:
root
group
:
root
when
:
mariadb_mysqltuner_passwords.stat.exists | bool
-
name
:
Check that MySQLTuner vulnerabilities is present
ansible.builtin.stat
:
path
:
/usr/local/src/MySQLTuner-perl/vulnerabilities.csv
register
:
mariadb_mysqltuner_vulnerabilities
-
name
:
MySQLTuner vulnerabilities.csv file in place
ansible.builtin.copy
:
...
...
@@ -181,6 +198,7 @@
mode
:
"
0644"
owner
:
root
group
:
root
when
:
mariadb_mysqltuner_vulnerabilities.stat.exists | bool
when
:
>-
( ansible_local.dpkg.installed is not defined ) or
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment