My last setup-ssh patch series removed this option. Though, this is
just a temporary fix as a patch series is coming which revert that
behaviour to the old state
---
qa/qa_node.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/qa/qa_node.py b/qa/qa_node.py
index 025683c..84f1b85 100644
--- a/qa/qa_node.py
+++ b/qa/qa_node.py
@@ -37,7 +37,7 @@ def _NodeAdd(node, readd=False):
elif readd and not node.get('_added', False):
raise qa_error.Error("Node %s not yet in cluster" % node['primary'])
- cmd = ['gnt-node', 'add', "--no-ssh-key-check"]
+ cmd = ['gnt-node', 'add']
if node.get('secondary', None):
cmd.append('--secondary-ip=%s' % node['secondary'])
if readd:
--
1.7.1