turn off NetworkManager in CentOS-8 TripleO

NetworkManager is restarting unexpectedly during
deployments of TripleO. Ensure the service is
disabled prior to deployment

Partial-Bug: #1885286
Change-Id: I67501aaaf34c8fdfa09da37e0e0a3eb6982cff3a
This commit is contained in:
Wes Hayutin 2020-07-01 11:08:44 -06:00
parent 476a4896a6
commit 7dd82ca385
2 changed files with 26 additions and 0 deletions

View File

@ -3,3 +3,4 @@
roles:
- role: common
- role: prepare-node
- role: disable_network_manager

View File

@ -0,0 +1,25 @@
- name: disable NetworkManager
block:
- name: dump network manager info
command: nmcli
register: nmcli_info
- name: print network manager info
debug:
msg: "{{ nmcli_info.stdout_lines }}"
- name: stop NetworkManager
become: true
systemd:
state: stopped
enabled: no
name: NetworkManager
- name: dump ip info
command: ip a
register: ip_info
- name: print ip info
debug:
msg: "{{ ip_info.stdout_lines }}"
when: ansible_distribution_major_version|int >= 8