Code Review
/
csit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
f27912e
)
Fix: Do not validate LXC image
23/8223/2
author
Peter Mikus
<
[email protected]
>
Mon, 28 Aug 2017 11:52:12 +0000
(11:52 +0000)
committer
Peter Mikus
<
[email protected]
>
Mon, 28 Aug 2017 11:52:48 +0000
(11:52 +0000)
Change-Id: I476f463ad7dd91f1d80a1e4b537a2cb3dd4ddee5
Signed-off-by: Peter Mikus <
[email protected]
>
resources/libraries/python/LXCUtils.py
patch
|
blob
|
history
diff --git
a/resources/libraries/python/LXCUtils.py
b/resources/libraries/python/LXCUtils.py
index
9f42540
..
57ced6b
100644
(file)
--- 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.')