Skip to content
Snippets Groups Projects
Commit 6f11f250 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

Allow default bridge to be configured.

Reviewed-by: iustinp
parent 7e84d392
No related merge requests found
......@@ -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'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment