Skip to content

Commit dcfbf7f

Browse files
committed
Misc minor fixes
1 parent e6a83b5 commit dcfbf7f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

etc/kayobe/ansible/fix-grub-rl9.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
path: /boot/efi/EFI/rocky/grub.cfg
2020
regexp: --root-dev-only\s?
2121
replace: ""
22-
when: stat_result.stat.exists
22+
when: stat_result.stat.exists

etc/kayobe/ansible/stackhpc-openstack-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,19 @@
4242
- { name: pip }
4343
- { name: setuptools }
4444

45-
- name: Ensure required Python packages are installed
45+
- name: Ensure required individual Python packages are installed
4646
ansible.builtin.pip:
4747
name:
4848
- "{{ repo_tmpdir.path }}"
49-
- "-r {{ repo_tmpdir.path }}/requirements.txt"
5049
- pytest-html
5150
- pytest-timeout
5251
virtualenv: "{{ sot_venv }}"
5352

53+
- name: Ensure Python requirements file packages are installed
54+
ansible.builtin.pip:
55+
requirements: "{{ repo_tmpdir.path }}/requirements.txt"
56+
virtualenv: "{{ sot_venv }}"
57+
5458
- name: Include Kolla Ansible passwords
5559
ansible.builtin.include_vars:
5660
file: "{{ kayobe_env_config_path }}/kolla/passwords.yml"

0 commit comments

Comments
 (0)