openmainframeproject / feilong

Feilong is a open source z/VM cloud connector project under the Open Mainframe Project umbrella that will accelerate the z/VM adoption, extending its ecosystem and its user experience. It provides a set of APIs to operate z/VM including guest, image, network, volume etc.
https://www.openmainframeproject.org/projects/feilong
Apache License 2.0
35 stars 70 forks source link

Doc: update list of supported operating systems #788

Closed Bischoff closed 8 months ago

Bischoff commented 8 months ago

This PR synchronizes the documentation with the code of get_linux_dist():

        supported = {'rhel': ['6', '7', '8', '9'],
                     'sles': ['11', '12', '15'],
                     'ubuntu': ['16', '20', '22'],
                     'rhcos': ['4']}

rhel8.x, rhel9.x, sles15.x, ubuntu20.x, and ubuntu22.x were missing in the doc.

These texts are used in:

I tried to follow all code paths and it seemed to me they all call get_linux_dist(). Please double-check as I am new to Feilong's source code, and an error is always possible.