Explorar el Código

Use CgroupString instead of missing GetCgroupAllowString in lxc_template

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
Alexander Morozov hace 10 años
padre
commit
c8c11bfc36
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      daemon/execdriver/lxc/lxc_template.go

+ 1 - 1
daemon/execdriver/lxc/lxc_template.go

@@ -51,7 +51,7 @@ lxc.cgroup.devices.allow = a
 lxc.cgroup.devices.deny = a
 #Allow the devices passed to us in the AllowedDevices list.
 {{range $allowedDevice := .AllowedDevices}}
-lxc.cgroup.devices.allow = {{$allowedDevice.GetCgroupAllowString}}
+lxc.cgroup.devices.allow = {{$allowedDevice.CgroupString}}
 {{end}}
 {{end}}