1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

pip -> ansible.builtin.pip

This commit is contained in:
Jerry Vonau 2025-02-20 15:29:33 -06:00
parent 910f073a74
commit c2b634a6d2
7 changed files with 11 additions and 11 deletions

View file

@ -12,7 +12,7 @@
state: present
- name: pip install 'psycopg' (NEW Psycopg 3) into venv /usr/local/ansible -- for Ansible modules {postgresql_db, postgresql_user} in Ansible collection community.postgresql -- used in moodle/tasks/install.yml
pip:
ansible.builtin.pip:
name: psycopg
virtualenv: /usr/local/ansible
extra_args: "--upgrade --no-cache-dir --prefer-binary" # 2023-10-01: Lifesaver when recent wheels (e.g. piwheels.org) are inevitably not yet built! SEE #3560