Merge "Install passlib to venv (htpasswd)"

This commit is contained in:
Zuul 2022-11-07 13:23:44 +00:00 committed by Gerrit Code Review
commit d30dfccf04
3 changed files with 10 additions and 9 deletions

View File

@ -31,7 +31,6 @@ required_packages:
- socat
- gcc
- dnsmasq
- apache2-utils
- isolinux
- dosfstools
# NOTE(TheJulia): The above entry for dnsmasq must be the last entry in the

View File

@ -33,6 +33,5 @@ required_packages:
- socat
- firewalld
- python3-firewall
- httpd-tools
- syslinux-nonlinux
- dosfstools

View File

@ -42,11 +42,20 @@
- ansible_distribution == "RedHat"
- ansible_distribution_version|int >= 9
- name: "Install packages"
- name: "Install system packages"
package:
name: "{{ required_packages }}"
state: present
- name: "Install python packages (in venv)"
include_role:
name: bifrost-pip-install
vars:
package: "{{ item }}"
with_items:
- passlib
- pymysql
- name: "Install Nginx"
import_role:
name: bifrost-nginx-install
@ -113,12 +122,6 @@
package: metalsmith
source_install: false
- name: "Install pymysql"
include_role:
name: bifrost-pip-install
vars:
package: pymysql
- name: "Install extra packages for ironic"
include_role:
name: bifrost-pip-install