Merge "install-ansible: ensure stevedore"

This commit is contained in:
Zuul 2021-03-09 02:52:10 +00:00 committed by Gerrit Code Review
commit 2a0ea75fb7
2 changed files with 26 additions and 0 deletions

View File

@ -58,6 +58,12 @@
src: bash-history.sh
dest: /etc/profile.d/bash-history.sh
- name: Ensure root cache directory
file:
path: /root/.cache
state: directory
mode: 0700
- name: Include OS-specific tasks
include_tasks: "{{ lookup('first_found', file_list) }}"
vars:

View File

@ -140,6 +140,26 @@
version: '{{ _install_ansible_openstacksdk_version | default(omit) }}'
state: '{{ _install_openstacksdk_state | default(omit) }}'
# NOTE(ianw) 2021-03-03 stevedore < 3.3.0 has a bug where it creates a
# constantly expanding set of cache files in
# /root/.cache/python-endpoints when run under ansible in a /tmp
# directory (this happens via cloud-launcher and openstacksdk).
# Ensure the production host is updated, and drop a .disable file
# for good measure
- name: Ensure stevedore >= 3.3.0
pip:
name: 'stevedore>=3.3.0'
- name: Add stevedore cache dir
file:
path: /root/.cache/python-entrypoints/
state: directory
mode: 0700
- name: Add stevedore cache disable file
file:
path: /root/.cache/python-entrypoints/.disable
state: touch
mode: 0600
- name: Ensure /etc/ansible and /etc/ansible/hosts
file:
state: directory