1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- from core import ConfigurationManager
- from core.NeuroneLauncher import NeuroneLauncher
- from core.OrderAnalyser import OrderAnalyser
- from core.OrderListener import OrderListener
- from neurons.ansible_tasks.ansible_tasks import Ansible_tasks
- # run command
- # order = "playbook"
- # order_analyser = OrderAnalyser(order)
- # order_analyser.start()
- # test ansible
- # tasks_file = "tasks.yml"
- # ansible_tasks = Ansible_tasks(tasks_file)
- def test_multi_args(*args , **kwargs):
- if kwargs is not None:
- for key, value in kwargs.iteritems():
- print "%s == %s" % (key, value)
- conf = ConfigurationManager(brain_file_name="test.yml")
- brain = conf.brainLoader.get_config()
- print brain
- for el in brain:
- print el["neurons"]
- neurons = el["neurons"]
- for neuron in neurons:
- NeuroneLauncher().start_neurone(neuron)
- # test_multi_args(**el["neurons"][0]["say"])
|