From: Thierry Parmentelat Date: Thu, 17 Feb 2011 15:40:51 +0000 (+0100) Subject: set xmpp server name so the omf-resctl plugin does trigger X-Git-Tag: tests-5.0-24~1 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=208728a0f3fa8c08548a13f2654aa8d83693d322;p=tests.git set xmpp server name so the omf-resctl plugin does trigger --- diff --git a/system/TestPlc.py b/system/TestPlc.py index c26908c..b13914f 100644 --- a/system/TestPlc.py +++ b/system/TestPlc.py @@ -564,6 +564,7 @@ class TestPlc: 'PLC_NET_DNS2', 'PLC_RESERVATION_GRANULARITY', 'PLC_OMF_ENABLED', + 'PLC_OMF_XMPP_SERVER', ]: fileconf.write ('e %s\n%s\n'%(var,self.plc_spec[var])) fileconf.write('w\n') diff --git a/system/config_default.py b/system/config_default.py index 34c9ca4..2e9056c 100644 --- a/system/config_default.py +++ b/system/config_default.py @@ -258,7 +258,9 @@ def plc (options,index) : 'PLC_NET_DNS1' : 'deferred-dns-1', 'PLC_NET_DNS2' : 'deferred-dns-2', 'PLC_RESERVATION_GRANULARITY':1800, + # minimal config so the omf plugins actually trigger 'PLC_OMF_ENABLED' : 'true', + 'PLC_OMF_XMPP_SERVER': 'deferred-myplc-hostname', 'sites' : sites(options,index), 'keys' : keys(options,index), 'initscripts': initscripts(options,index),