keep track of what has moved to py3
[tests.git] / system / config_bignode.py
1 # -*- python3 -*-
2 # Thierry Parmentelat <thierry.parmentelat@inria.fr>
3 # Copyright (C) 2015 INRIA 
4 #
5 # allow one hour for the node to install
6
7 def config (plc_specs, options):
8     def tweak_timers (plc_spec):
9         plc_spec['ssh_node_boot_timers']=(60, 58)
10         return plc_spec
11     return [tweak_timers (plc_spec) for plc_spec in plc_specs ]
12
13