Skip to content
Snippets Groups Projects
Verified Commit 2ae89a09 authored by Chris Croome's avatar Chris Croome
Browse files

internal variables added to arg spec

parent 8d7f182e
No related branches found
Tags 3.4.0
No related merge requests found
Pipeline #29834 passed
......@@ -65,6 +65,14 @@ argument_specs:
elements: str
required: false
description: Internal list of proposed MariaDB configuration file variables that don't have values.
mariadb_cnf_variable_edited:
type: dict
required: false
description: Internal results from using ini_file to write a variable variable in a config file.
mariadb_cnf_variable_uncommented:
type: dict
required: false
description: Internal results from using lineinfile to uncomment a variable in a config file.
mariadb_config:
type: list
elements: dict
......
......@@ -80,7 +80,7 @@
mode: "{{ mariadb_cnf.mode | default('0644') }}"
owner: "{{ mariadb_cnf.owner | default('root') }}"
group: "{{ mariadb_cnf.owner | default('root') }}"
register: mariadb_conf_variable_uncommented
register: mariadb_cnf_variable_uncommented
when: >-
( mariadb_cnf_variable_pair.key not in mariadb_cnf_file_section_existing_keys ) or
( ( mariadb_cnf_variable_pair.value | type_debug != "NoneType" ) and
......@@ -98,9 +98,9 @@
msg: MariaDB is to be restarted
notify: Restart mariadb
when:
- mariadb_conf_variable_uncommented is defined
- mariadb_conf_variable_uncommented.changed is defined
- mariadb_conf_variable_uncommented.changed | bool
- mariadb_cnf_variable_uncommented is defined
- mariadb_cnf_variable_uncommented.changed is defined
- mariadb_cnf_variable_uncommented.changed | bool
- mariadb_init is defined
- mariadb_init == "systemd"
......@@ -114,7 +114,7 @@
mode: "{{ mariadb_cnf.mode | default('0644') }}"
owner: "{{ mariadb_cnf.owner | default('root') }}"
group: "{{ mariadb_cnf.owner | default('root') }}"
register: mariadb_conf_variable_edited
register: mariadb_cnf_variable_edited
when:
- mariadb_cnf_variable_pair.key in mariadb_cnf_file_section_proposed_value_less_keys
- mariadb_cnf_variable_pair.key not in mariadb_cnf_file_section_existing_keys
......@@ -130,9 +130,9 @@
msg: MariaDB is to be restarted
notify: Restart mariadb
when:
- mariadb_conf_variable_edited is defined
- mariadb_conf_variable_edited.changed is defined
- mariadb_conf_variable_edited.changed | bool
- mariadb_cnf_variable_edited is defined
- mariadb_cnf_variable_edited.changed is defined
- mariadb_cnf_variable_edited.changed | bool
- mariadb_init is defined
- mariadb_init == "systemd"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment