From 808e8f8bdc907ba6c63564c26ef3a1aa4440f484 Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Wed, 25 Nov 2015 12:38:55 -0800 Subject: [PATCH] Load the 8021q kernel module in simple-init Vlan support was recently added to glean. However, if the 8021q module is not loaded, glean will fail to bring up a tagged interfaced defined in /etc/network/interfaces.d/. Manually attempting to bring up the interface results in an error[1]. This patch ensures that the 8021q module is loaded so that tagged interfaces can be brought up at boot. [1] http://paste.openstack.org/show/480027/ Change-Id: I15d805c07d4b5e1161d831f0393d027e4325137f --- elements/simple-init/install.d/50-simple-init | 3 +++ 1 file changed, 3 insertions(+) diff --git a/elements/simple-init/install.d/50-simple-init b/elements/simple-init/install.d/50-simple-init index c7880bdb..8e89296b 100755 --- a/elements/simple-init/install.d/50-simple-init +++ b/elements/simple-init/install.d/50-simple-init @@ -21,4 +21,7 @@ set -o pipefail SCRIPTDIR=$(dirname $0) +# Ensure the 8021q module is loaded so that glean can support tagged interfaces +echo "8021q" >> /etc/modules + glean-install