From: Peter Mikus Date: Mon, 28 Aug 2017 11:52:12 +0000 (+0000) Subject: Fix: Do not validate LXC image X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=b9ce06b180903e794a806e6eda7a1b076dc9cc8f Fix: Do not validate LXC image Change-Id: I476f463ad7dd91f1d80a1e4b537a2cb3dd4ddee5 Signed-off-by: Peter Mikus --- diff --git a/resources/libraries/python/LXCUtils.py b/resources/libraries/python/LXCUtils.py index 9f42540986..57ced6b549 100644 --- a/resources/libraries/python/LXCUtils.py +++ b/resources/libraries/python/LXCUtils.py @@ -102,8 +102,9 @@ class LXCUtils(object): ssh.connect(self._node) ret, _, _ = ssh.exec_command_sudo( - 'lxc-create -t download --name {0} -- -d {1} -r {2} -a {3}' - .format(self._container_name, distro, release, arch), timeout=1800) + 'lxc-create -t download --name {0} -- -d {1} -r {2} -a {3}'\ + ' --no-validate'.format(self._container_name, distro, release, + arch), timeout=1800) if int(ret) != 0: raise RuntimeError('Failed to create LXC container.')