Update to working Neutron config

This commit is contained in:
2023-07-20 08:17:51 -04:00
parent 9e5414f88f
commit c718884860
5 changed files with 30 additions and 19 deletions

View File

@@ -4,11 +4,11 @@
become: true
tasks:
- name: Add RDO Antelope repo to dnf
ansible.builtin.dnf:
name: 'https://www.rdoproject.org/repos/rdo-release.el9.rpm'
state: present
disable_gpg_check: true
# - name: Add RDO Antelope repo to dnf
# ansible.builtin.dnf:
# name: 'https://www.rdoproject.org/repos/rdo-release.el9.rpm'
# state: present
# disable_gpg_check: true
- name: Update all packages
ansible.builtin.package:
@@ -46,11 +46,11 @@
user: stack
state: present
- name: OpenVSwitch Service enabled and started
ansible.builtin.service:
name: openvswitch
state: started
enabled: true
# - name: OpenVSwitch Service enabled and started
# ansible.builtin.service:
# name: openvswitch
# state: started
# enabled: true
- name: Bootstrap Network configuration
hosts: all
@@ -103,6 +103,14 @@
# group: root
# mode: '0600'
- name: Add /usr/local/bin to bashrc PATH
ansible.builtin.lineinfile:
path: /etc/bashrc
line: PATH="${PATH}:/usr/local/sbin:/usr/local/bin"
state: present
insertafter: EOF
create: true
- name: Clone openstack-ansible repo into /opt/openstack-ansible
ansible.builtin.git:
repo: https://opendev.org/openstack/openstack-ansible