1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-29 21:47:02 +03:00

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

This commit is contained in:
Alejandro Huertas Herrero 2021-11-25 09:58:02 +01:00 committed by GitHub
parent 3a547b3716
commit 6f32df2037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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