1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

M #-: add RedHat support to provision (#1615)

(cherry picked from commit 6f32df2037447dde051ebb1f58f7ccf69873704e)
This commit is contained in:
Alejandro Huertas Herrero 2021-11-25 09:58:02 +01:00 committed by Ruben S. Montero
parent 83ce4f31a7
commit a98a188d03
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87
3 changed files with 3 additions and 3 deletions

View File

@ -24,4 +24,3 @@
frr_iface: 'eth1'
# Use /20 for the internal management network address
frr_prefix_length: 20

View File

@ -19,4 +19,3 @@
frr_iface: '{{ oneprovision_private_phydev }}'
# Use /25 for the internal management network address
frr_prefix_length: 25

View File

@ -6,7 +6,9 @@
(ansible_distribution == 'Ubuntu' and ansible_distribution_version == '16.04') or
(ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04') or
(ansible_distribution == 'CentOS' and ansible_distribution_major_version == '7') or
(ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8')
(ansible_distribution == 'CentOS' and ansible_distribution_major_version == '8') or
(ansible_distribution == 'RedHat' and ansible_distribution_major_version == '7') or
(ansible_distribution == 'RedHat' and ansible_distribution_major_version == '8')
msg: "Unsupported target OS"
- include: clean_netconfigs.yml