mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
pip install {pymysql,psycopg,passlib} to Ansible venv, on demand
This commit is contained in:
parent
f16bd2a6b5
commit
957a89d67c
3 changed files with 24 additions and 6 deletions
|
@ -9,7 +9,7 @@
|
|||
name: net.ipv6.conf.all.disable_ipv6
|
||||
value: 0
|
||||
|
||||
- name: "Install 5 packages: libcgi-fast-perl, munin, munin-node, munin-plugins-extra, python3-passlib"
|
||||
- name: "Install 4 packages: libcgi-fast-perl, munin, munin-node, munin-plugins-extra"
|
||||
package:
|
||||
name:
|
||||
#- libapache2-mod-fcgid
|
||||
|
@ -17,9 +17,15 @@
|
|||
- munin
|
||||
- munin-node
|
||||
- munin-plugins-extra
|
||||
- python3-passlib # For Ansible module 'htpasswd' in Ansible collection community.general -- used just below
|
||||
#- python3-passlib # For Ansible module 'htpasswd' in Ansible collection community.general -- used just below
|
||||
state: present
|
||||
|
||||
- name: pip install 'passlib' into venv /usr/local/ansible -- for Ansible module 'htpasswd' in Ansible collection community.general -- used just below
|
||||
pip:
|
||||
name: passlib
|
||||
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
|
||||
|
||||
# SEE ALSO roles/network/tasks/install.yml
|
||||
- name: RESTORE net.ipv6.conf.all.disable_ipv6 to 1 in /etc/sysctl.conf for #3434
|
||||
sysctl:
|
||||
|
|
|
@ -3,16 +3,22 @@
|
|||
register: df1
|
||||
|
||||
|
||||
- name: 'Install MySQL packages: mariadb-server, mariadb-client, php{{ php_version }}-mysql, python3-pymysql'
|
||||
- name: 'Install MySQL packages: mariadb-server, mariadb-client, php{{ php_version }}-mysql'
|
||||
package:
|
||||
name:
|
||||
- mariadb-server
|
||||
- mariadb-client
|
||||
#- php{{ php_version }}-common # Auto-installed as an apt dependency. REGARDLESS: php{{ php_version }}-common superset php{{ php_version }}-cli is auto-installed by php{{ php_version }}-fpm in nginx/tasks/install.yml
|
||||
- php{{ php_version }}-mysql # Likewise installed in nextcloud/tasks/install.yml, pbx/tasks/freepbx.yml, wordpress/tasks/install.yml
|
||||
- python3-pymysql # For Ansible modules {mysql_db, mysql_user} in Ansible collection community.mysql -- used in MySQL roles {mediawiki, nextcloud, wordpress} and possibly {elgg, pbx}
|
||||
#- python3-pymysql # For Ansible modules {mysql_db, mysql_user} in Ansible collection community.mysql -- used in MySQL roles {mediawiki, nextcloud, wordpress} and possibly {elgg, pbx}
|
||||
state: present
|
||||
|
||||
- name: pip install 'pymysql' into venv /usr/local/ansible -- for Ansible modules {mysql_db, mysql_user} in Ansible collection community.mysql -- used in roles {mediawiki, nextcloud, wordpress, matomo, pbx}
|
||||
pip:
|
||||
name: pymysql
|
||||
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
|
||||
|
||||
# 2020-07-11: 10 PHP package installs moved to roles/www_base/tasks/main.yml
|
||||
# php{{ php_version }}-sqlite3 install moved to roles/osm-vector-maps/tasks/install.yml
|
||||
|
||||
|
|
|
@ -3,14 +3,20 @@
|
|||
register: df1
|
||||
|
||||
|
||||
- name: 'Install packages: postgresql, postgresql-client, python3-psycopg2'
|
||||
- name: 'Install packages: postgresql, postgresql-client'
|
||||
package:
|
||||
name:
|
||||
- postgresql
|
||||
- postgresql-client
|
||||
- python3-psycopg2 # For Ansible modules {postgresql_db, postgresql_user} in Ansible collection community.postgresql -- used in moodle/tasks/install.yml
|
||||
#- python3-psycopg2 # For Ansible modules {postgresql_db, postgresql_user} in Ansible collection community.postgresql -- used in moodle/tasks/install.yml
|
||||
state: present
|
||||
|
||||
- name: pip install 'psycopg' into venv /usr/local/ansible -- for Ansible modules {postgresql_db, postgresql_user} in Ansible collection community.postgresql -- used in moodle/tasks/install.yml
|
||||
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
|
||||
|
||||
- name: Run shell command "pg_config --version" to extract MAJOR version number -- strip off MINOR/PATCH version number(s)
|
||||
shell: pg_config --version | sed 's/^[^0-9]*//; s/[^0-9].*//'
|
||||
register: pg_config_version
|
||||
|
|
Loading…
Add table
Reference in a new issue