From f395e8d3a322aae3b624a441e114931588f09126 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 3 Mar 2015 16:01:04 +0100 Subject: [PATCH] the kernel flag systemd.log_level=debug is not set by default anymore, we add the option to GetBootMedium that does this --- system/TestNode.py | 1 + system/config_default.py | 3 +++ 2 files changed, 4 insertions(+) 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): -- 2.43.0