diff options
author | Andrew Kutz <101085+akutz@users.noreply.github.com> | 2021-08-10 15:10:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 15:10:44 -0500 |
commit | b9d308b4d61d22bacc05bcae59819755975631f8 (patch) | |
tree | 012a1e818d10a53a3106214c7f367ad7a5aa715b /requirements.txt | |
parent | d3271217e2745fb0e3405bd093b61c39fe0708a7 (diff) | |
download | vyos-cloud-init-b9d308b4d61d22bacc05bcae59819755975631f8.tar.gz vyos-cloud-init-b9d308b4d61d22bacc05bcae59819755975631f8.zip |
Change netifaces dependency to 0.10.4 (#965)
Change netifaces dependency to 0.10.4
Currently versions Ubuntu <=20.10 use netifaces 0.10.4 By requiring
netifaces 0.10.9, the VMware datasource omitted itself from cloud-init
on Ubuntu <=20.10.
This patch changes the netifaces dependency to 0.10.4. While it is true
there are patches to netifaces post 0.10.4 that are desirable, testing
against the most common network configuration was performed to verify
the VMware datasource will still function with netifaces 0.10.4.
Diffstat (limited to 'requirements.txt')
-rw-r--r-- | requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index 41d01d62..c4adc455 100644 --- a/requirements.txt +++ b/requirements.txt @@ -40,4 +40,4 @@ jsonschema # and still participate in instance-data by gathering the network in detail at # runtime and merge that information into the metadata and repersist that to # disk. -netifaces>=0.10.9 +netifaces>=0.10.4 |