X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=system%2Fconfig_default.py;h=103fcc7f8bbde5d786c8321e03513a67100a0599;hb=4297f83e55247a16c587d1aae4205f198d17fd69;hp=ea51da686501cc8f0f514704726dde957bd06d10;hpb=ff1fa20416428477d21e053296517839081e316f;p=tests.git diff --git a/system/config_default.py b/system/config_default.py index ea51da6..103fcc7 100644 --- a/system/config_default.py +++ b/system/config_default.py @@ -518,7 +518,7 @@ def plc (options,index) : 'initscripts': initscripts(options,index), 'slices' : slices(options,index), 'tcp_specs' : tcp_specs(options,index), - 'sfa' : sfa(options,index), + 'sfa' : sfa(options,index), 'leases' : leases (options, index), # big distros need more time to install nodes 'ssh_node_boot_timers': (40,38), @@ -619,7 +619,7 @@ def config (plc_specs, options): return result ### for creating a sample config interactively -def sample_test_plc (): +def sample_test_plc_spec (): class Void: pass options = Void() @@ -629,8 +629,8 @@ def sample_test_plc (): return config([], options)[0] if __name__ == '__main__': - s = sample_test_plc() - print 'Sample plc_spec has the following keys' + s = sample_test_plc_spec() + print('Sample plc_spec has the following keys') for k in sorted(s.keys()): - print k + print(k)