From: Thierry Parmentelat <thierry.parmentelat@inria.fr>
Date: Tue, 3 Mar 2015 15:01:04 +0000 (+0100)
Subject: the kernel flag systemd.log_level=debug is not set by default anymore, we add the... 
X-Git-Tag: tests-5.3-10~16
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=f395e8d3a322aae3b624a441e114931588f09126;p=tests.git

the kernel flag systemd.log_level=debug is not set by default anymore, we add the option to GetBootMedium that does this
---

diff --git a/system/TestNode.py b/system/TestNode.py
index c8ca1e8..2b24ba8 100644
--- a/system/TestNode.py
+++ b/system/TestNode.py
@@ -156,6 +156,7 @@ class TestNode:
         if self.is_qemu():
             options.append('serial')
             options.append('no-hangcheck')
+            options.append('systemd-debug')
         encoded=self.test_plc.apiserver.GetBootMedium(self.test_plc.auth_root(), 
                                                       self.name(), 'node-iso', '', options)
         if (encoded == ''):
diff --git a/system/config_default.py b/system/config_default.py
index ddf8578..c2c1651 100644
--- a/system/config_default.py
+++ b/system/config_default.py
@@ -65,6 +65,9 @@ def nodes(options,index):
              'route_fields' :           { 'subnet' : '0.0.0.0/0',
                                           'next_hop' : 'xxx-deferred-xxx',
                                           },
+             # boot cd settings
+             # we should have tags here instead of the hard-wired
+             # options set for GetBootMedium in TestNode.py
              }]
 
 def all_nodenames (options,index):