On Mon, Dec 14, 2009 at 06:10:18PM +0100, Iustin Pop wrote:
> This patch modifies burnin to accept the --no-name-check option and also
> adds --no-ip-check (which was always set to True before).
> ---
> tools/burnin | 8 +++++++-
> 1 files changed, 7 insertions(+), 1 deletions(-)
Small interdiff adding this to the import option too (failed during actual
burnin tests):
diff --git a/tools/burnin b/tools/burnin
index a532997..8b35058 100755
--- a/tools/burnin
+++ b/tools/burnin
@@ -654,7 +654,8 @@ class Burner(object):
pnode=pnode,
snode=snode,
start=True,
- ip_check=True,
+ ip_check=self.opts.ip_check,
+ name_check=self.opts.name_check,
wait_for_sync=True,
file_storage_dir=None,
file_driver="loop",
--
iustin