From 6f11f250f249c164856c3fe8c2271f98963fb0f0 Mon Sep 17 00:00:00 2001
From: Michael Hanselmann <hansmi@google.com>
Date: Mon, 23 Jul 2007 07:43:37 +0000
Subject: [PATCH] Allow default bridge to be configured.

Reviewed-by: iustinp
---
 testing/ganeti.qa.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/testing/ganeti.qa.py b/testing/ganeti.qa.py
index f0604cfe4..2f585b9f3 100755
--- a/testing/ganeti.qa.py
+++ b/testing/ganeti.qa.py
@@ -286,6 +286,8 @@ def TestClusterInit():
   cmd = ['gnt-cluster', 'init']
   if master.get('secondary', None):
     cmd.append('--secondary-ip=%s' % master['secondary'])
+  if cfg.get('bridge', None):
+    cmd.append('--bridge=%s' % cfg['bridge'])
   cmd.append(cfg['name'])
 
   AssertEqual(StartSSH(master['primary'],
-- 
GitLab