Skip to content

Commit

Permalink
molecule: add extra apt dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
dometto authored Apr 16, 2024
1 parent 7841e0f commit 040250c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,17 @@
when: ansible_os_family == "RedHat" and ansible_distribution_major_version is version("8", ">=")
- name: Install dependencies (apt)
apt:
name: [sudo, git, make, python3-venv, python3-setuptools]
name:
- sudo
- git
- make
- python3-venv
- python3-setuptools
- python3-dev
- python3-psycopg2
- gcc
- acl
- gnutls-bin
when: ansible_os_family == "Debian"

# This is to cheat at idempotence, which will fail if a commit is merged between converge and idempotence.
Expand Down

0 comments on commit 040250c

Please sign in to comment.