Skip to content

Commit

Permalink
Add Python3 to the containers
Browse files Browse the repository at this point in the history
  • Loading branch information
sleighzy committed Aug 29, 2024
1 parent b36bb21 commit 602df39
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions molecule/default/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,24 @@
update_cache: yes
when: ansible_os_family == "Debian"

# The installation of this package into the container means
# The installation of the "procps" package into the container means
# that the "ps" command is available for viewing the running process.
# Installing this package however also prevents an issue whereby the
# ZooKeeper service is constantly restarted by systemd which causes
# the Molecule tests to fail as the service is not started correctly.
- name: Install ps on Debian
ansible.builtin.apt:
name: procps
name:
- procps
- python3
state: present
when: ansible_os_family == "Debian"

- name: Install ps on Rocky Linux
ansible.builtin.yum:
name: procps
name:
- procps
- python3
state: present
use_backend: dnf
when: ansible_distribution == "Rocky" and ansible_distribution_major_version == "8"

0 comments on commit 602df39

Please sign in to comment.