summaryrefslogtreecommitdiff
path: root/execdriver/lxc/lxc_template.go
diff options
context:
space:
mode:
Diffstat (limited to 'execdriver/lxc/lxc_template.go')
-rw-r--r--execdriver/lxc/lxc_template.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/execdriver/lxc/lxc_template.go b/execdriver/lxc/lxc_template.go
index 1181396a18..03d01e893c 100644
--- a/execdriver/lxc/lxc_template.go
+++ b/execdriver/lxc/lxc_template.go
@@ -7,17 +7,17 @@ import (
)
const LxcTemplate = `
-{{if .Network}}
+{{if .Network.Interface}}
# network configuration
lxc.network.type = veth
-lxc.network.link = {{.Network.Bridge}}
+lxc.network.link = {{.Network.Interface.Bridge}}
lxc.network.name = eth0
-lxc.network.mtu = {{.Network.Mtu}}
{{else}}
# network is disabled (-n=false)
lxc.network.type = empty
lxc.network.flags = up
{{end}}
+lxc.network.mtu = {{.Network.Mtu}}
# root filesystem
{{$ROOTFS := .Rootfs}}