From 16bfd75e0318304727433363217510310787756e Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Mon, 13 Nov 2017 18:45:40 +0100 Subject: prototypes: modprobe 8021q before running IRATI This inserts the 802.1Q VLAN module into the kernel to make sure it is available when creating VLANs for the IRATI shim DIF. --- rumba/prototypes/irati.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rumba/prototypes/irati.py b/rumba/prototypes/irati.py index 72d4b4e..f679b69 100644 --- a/rumba/prototypes/irati.py +++ b/rumba/prototypes/irati.py @@ -81,7 +81,8 @@ class Experiment(mod.Experiment): def install(self): """Installs IRATI on the nodes.""" - cmds = [self.sudo("apt-get update"), + cmds = [self.sudo("modprobe 8021q"), + self.sudo("apt-get update"), self.sudo("apt-get install g++ gcc libtool " "linux-headers-$(uname -r) autoconf automake " "protobuf-compiler libprotobuf-dev " -- cgit v1.2.3