mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
Fix stretch ENA install
Intel broke the 4.3.4 URL version with their latest push of 4.3.5
This commit is contained in:
parent
8287a64d3a
commit
ad02412b96
1 changed files with 4 additions and 1 deletions
|
@ -89,9 +89,12 @@ class InstallEnhancedNetworking(Task):
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
from bootstrapvz.common.releases import stretch
|
from bootstrapvz.common.releases import stretch
|
||||||
|
# It appears the latest version will always get a prefix of 18700.
|
||||||
|
# Once a new version is released, the url int prefix will change (no redirects)
|
||||||
|
# to something above the 2nd most recent release. You've been warned.
|
||||||
if info.manifest.release >= stretch:
|
if info.manifest.release >= stretch:
|
||||||
version = '4.3.4'
|
version = '4.3.4'
|
||||||
drivers_url = 'https://downloadmirror.intel.com/18700/eng/ixgbevf-4.3.4.tar.gz'
|
drivers_url = 'https://downloadmirror.intel.com/27874/eng/ixgbevf-4.3.4.tar.gz'
|
||||||
else:
|
else:
|
||||||
version = '3.2.2'
|
version = '3.2.2'
|
||||||
drivers_url = 'https://downloadmirror.intel.com/26561/eng/ixgbevf-3.2.2.tar.gz'
|
drivers_url = 'https://downloadmirror.intel.com/26561/eng/ixgbevf-3.2.2.tar.gz'
|
||||||
|
|
Loading…
Add table
Reference in a new issue