Merge "Ensure the openvswitch service is enabled and deps are installed" into stable/train

This commit is contained in:
Zuul 2022-10-04 19:02:24 +00:00 committed by Gerrit Code Review
commit 0b7c84cd82
4 changed files with 14 additions and 0 deletions

View File

@ -47,6 +47,17 @@
- not ('No package openvswitch available.' in tripleo_bootstrap_packages_bootstrap_result.failures | default([]))
register: tripleo_bootstrap_packages_bootstrap_result
- name: Enable openvswitch service if installed
become: true
service:
name: openvswitch
enabled: true
state: started
register: openvswitch_service_start
failed_when:
- not 'Could not find the requested service' in openvswitch_service_start.msg|default('')
- openvswitch_service_start is failed
- name: Create /var/lib/heat-config/tripleo-config-download directory for deployment data
become: true
file:

View File

@ -16,6 +16,7 @@
_tripleo_bootstrap_packages_bootstrap:
- driverctl
- openstack-heat-agents
- jq
- puppet-tripleo

View File

@ -16,6 +16,7 @@
_tripleo_bootstrap_packages_bootstrap:
- driverctl
- lvm2
- jq
- openvswitch

View File

@ -16,6 +16,7 @@
_tripleo_bootstrap_packages_bootstrap:
- driverctl
- libselinux-python
- lvm2
- jq