From c87aa2206901a73fb20ae8d42fc3d7271c1f039f Mon Sep 17 00:00:00 2001 From: Christopher Grim Date: Wed, 15 Mar 2017 16:55:33 -0400 Subject: [PATCH] EC2: Update the URL to dowload the ixgbevf driver The URL for the ixgbevf driver is currently returning a 404. Updating to the new mirror URL gets EC2 builds with enhanced networking support working again. --- bootstrapvz/providers/ec2/tasks/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrapvz/providers/ec2/tasks/network.py b/bootstrapvz/providers/ec2/tasks/network.py index 00334e4..22282a3 100644 --- a/bootstrapvz/providers/ec2/tasks/network.py +++ b/bootstrapvz/providers/ec2/tasks/network.py @@ -88,7 +88,7 @@ class InstallEnhancedNetworking(Task): @classmethod def run(cls, info): version = '3.2.2' - drivers_url = 'https://downloadmirror.intel.com/18700/eng/ixgbevf-3.2.2.tar.gz' + drivers_url = 'https://downloadmirror.intel.com/26561/eng/ixgbevf-3.2.2.tar.gz' # Sadly the first number in the URL changes: # 2.16.1 => https://downloadmirror.intel.com/25464/eng/ixgbevf-2.16.1.tar.gz archive = os.path.join(info.root, 'tmp', 'ixgbevf-%s.tar.gz' % (version))