aboutsummaryrefslogtreecommitdiff
path: root/rumba/testbeds
diff options
context:
space:
mode:
authorMarco Capitani <m.capitani@nextworks.it>2018-02-21 11:43:49 +0100
committerMarco Capitani <m.capitani@nextworks.it>2018-02-27 16:51:26 +0100
commit0158b68b1736ca8a5fb68de5a56cae234030774c (patch)
tree77d317940d9abcc0db9140fc494266c9a04effb2 /rumba/testbeds
parent5e6f1b8dd525bf4c0f8a03463bdb1f4696f27dee (diff)
downloadrumba-0158b68b1736ca8a5fb68de5a56cae234030774c.tar.gz
rumba-0158b68b1736ca8a5fb68de5a56cae234030774c.zip
model & more: add prototype/system log fields
This commit adds the fields necessary to specify the paths and folders related to system logs and prototype logs and fetching them. Defaults are introduced and specific paths for rlite & qemu
Diffstat (limited to 'rumba/testbeds')
-rw-r--r--rumba/testbeds/qemu.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/rumba/testbeds/qemu.py b/rumba/testbeds/qemu.py
index a74fae0..4321fc8 100644
--- a/rumba/testbeds/qemu.py
+++ b/rumba/testbeds/qemu.py
@@ -48,7 +48,9 @@ class Testbed(mod.Testbed):
def __init__(self, exp_name, bzimage_path=None, initramfs_path=None,
proj_name="ARCFIRE", password="root", username="root",
use_vhost=True):
- mod.Testbed.__init__(self, exp_name, username, password, proj_name)
+ mod.Testbed.__init__(self, exp_name,
+ username, password,
+ proj_name, system_logs=['/var/log/messages'])
self.vms = {}
self.shims = []
self.vhost = use_vhost