blob: dd6ef4cdfd72e4f0a38c1be10b80321d1e74d624 [file] [log] [blame]
peusterm63a55382016-01-14 16:33:50 +01001- hosts: localhost
peusterm61db5762016-01-14 16:30:04 +01002 tasks:
3 - name: updates apt
4 apt: update_cache=yes
peustermc68c68e2016-01-14 16:57:57 +01005
6 - name: install python-dev
7 apt: pkg=python-dev state=installed
8
9 - name: install python-zmq
10 apt: pkg=python-zmq state=installed
11
12 - name: install libzmq-dev
13 apt: pkg=libzmq-dev state=installed
peusterm61db5762016-01-14 16:30:04 +010014
15 - name: install pip
16 apt: pkg=python-pip state=installed
17
stevenvanrossem7d4bfac2016-02-23 10:56:43 +010018 - name: install setuptools
19 pip: name=setuptools state=latest
20
peusterm61db5762016-01-14 16:30:04 +010021 - name: install zerorpc
peusterma4edcd72016-03-07 15:53:33 +010022 pip: name=zerorpc state=latest
peusterm61db5762016-01-14 16:30:04 +010023
24 - name: install tabulate
peusterma4edcd72016-03-07 15:53:33 +010025 pip: name=tabulate state=latest
peusterm61db5762016-01-14 16:30:04 +010026
27 - name: install argparse
peusterma4edcd72016-03-07 15:53:33 +010028 pip: name=argparse state=latest
stevenvanrossema29c50c2016-02-16 14:37:44 +010029
30 - name: install networkx
peusterma4edcd72016-03-07 15:53:33 +010031 pip: name=networkx state=latest
stevenvanrossema29c50c2016-02-16 14:37:44 +010032
peusterma1a5ed02016-03-07 15:29:20 +010033 - name: install six
peusterma4edcd72016-03-07 15:53:33 +010034 pip: name=six state=latest
peusterma1a5ed02016-03-07 15:29:20 +010035
stevenvanrossema29c50c2016-02-16 14:37:44 +010036 - name: install ryu
peusterma4edcd72016-03-07 15:53:33 +010037 pip: name=ryu state=latest
stevenvanrossem0e17de22016-02-18 16:22:05 +010038
39 - name: install oslo.config
peusterma4edcd72016-03-07 15:53:33 +010040 pip: name=oslo.config state=latest
cgeoffroy840f1792016-03-03 16:53:52 +010041
42 - name: install pytest
peusterma4edcd72016-03-07 15:53:33 +010043 pip: name=pytest state=latest