The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/3631
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Signed-off-by: Stéphane Graber <[email protected]>
From 5490a426882417d8ec59ee3c0d5b0d626ca8bfac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <[email protected]> Date: Thu, 3 Aug 2017 21:48:50 -0400 Subject: [PATCH] lxc-to-lxd: Fix bad test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber <[email protected]> --- scripts/lxc-to-lxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lxc-to-lxd b/scripts/lxc-to-lxd index 14104a6fa..c8063b8e7 100755 --- a/scripts/lxc-to-lxd +++ b/scripts/lxc-to-lxd @@ -457,7 +457,7 @@ def convert_container(lxd_socket, container_name, args): # Convert seccomp print("Processing container seccomp configuration") value = config_get(lxc_config, "lxc.seccomp") - if value and value != "/usr/share/lxc/config/common.seccomp": + if value and value[0] != "/usr/share/lxc/config/common.seccomp": print("Custom seccomp profiles aren't supported, skipping...") return False
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
