diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24465bc0e25c19f8350d497d54c68cb7c3cb52f4..852af74c846c9c2081be8db7b1a27db37228a655 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ variables: ANSIBLE_FORCE_COLOR: "1" ANSIBLE_REMOTE_TMP: "/tmp" ANSIBLE_SHELL_ALLOW_WORLD_READABLE_TEMP: "1" - MOLECULE_VERBOSITY: "0" + MOLECULE_VERBOSITY: "3" PY_COLORS: "1" before_script: - whoami diff --git a/meta/argument_specs.yml b/meta/argument_specs.yml index 3537d945c3dc87369b4439a584b49da878d64691..358c6ebf1a94100f814a4c5878d5acc24031069c 100644 --- a/meta/argument_specs.yml +++ b/meta/argument_specs.yml @@ -14,6 +14,10 @@ argument_specs: description: An Ansible role for installing and configurinag the Apache HTTP server. short_description: The main entry point for the Apache role. options: + apache: + type: bool + required: true + description: Run the tasks in this role. apache_a2query: type: str required: true diff --git a/tasks/main.yml b/tasks/main.yml index 4aad92fe4386d26d9fec4e25129f0b16f12aed2f..86b1f15141a275315795258554fd9b7f747ca9e5 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,7 +10,7 @@ --- - name: Apache role skipped ansible.builtin.debug: - msg: "The tasks in the Apache role are not being run since the apache variables is not true." + msg: "The tasks in the Apache role are not being run since the apache variable is not true." when: not apache | bool tags: - apache