Skip to content

Add missing variables documentation, plus a few minors tweaks, mostly focused on CI issues #126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ansible.builtin.service_facts:

- name: Check if amq_streams service started
assert:
ansible.builtin.assert:
that:
- ansible_facts.services["amq_streams_broker.service"]["state"] == "running"
- ansible_facts.services["amq_streams_broker.service"]["status"] == "enabled"
Expand Down
7 changes: 3 additions & 4 deletions molecule/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
vars:
sudo_pkg_name: 'sudo'
tasks:
- name: Display Ansible version
ansible.builtin.debug:
msg: "Ansible version is {{ ansible_version.full }}"

- name: "Ensure {{ sudo_pkg_name }} is installed (if user is root)."
ansible.builtin.yum:
Expand All @@ -27,7 +30,3 @@
name:
- sudo
state: present

- name: Display Ansible version
ansible.builtin.debug:
msg: "Ansible version is {{ ansible_version.full }}"
Loading