blob: 0aa0ab663d8d494da0f3dc30446783c0478c4bf5 [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
peusterm5877ea22016-05-11 13:44:59 +020015 - name: install libffi-dev
16 apt: pkg=libffi-dev state=installed
17
peusterm61db5762016-01-14 16:30:04 +010018 - name: install pip
19 apt: pkg=python-pip state=installed
20
stevenvanrossem7d4bfac2016-02-23 10:56:43 +010021 - name: install setuptools
22 pip: name=setuptools state=latest
23
peusterm61db5762016-01-14 16:30:04 +010024 - name: install zerorpc
peusterma4edcd72016-03-07 15:53:33 +010025 pip: name=zerorpc state=latest
peusterm61db5762016-01-14 16:30:04 +010026
27 - name: install tabulate
peusterma4edcd72016-03-07 15:53:33 +010028 pip: name=tabulate state=latest
peusterm61db5762016-01-14 16:30:04 +010029
30 - name: install argparse
peusterma4edcd72016-03-07 15:53:33 +010031 pip: name=argparse state=latest
stevenvanrossema29c50c2016-02-16 14:37:44 +010032
33 - name: install networkx
peusterma4edcd72016-03-07 15:53:33 +010034 pip: name=networkx state=latest
stevenvanrossema29c50c2016-02-16 14:37:44 +010035
peusterma1a5ed02016-03-07 15:29:20 +010036 - name: install six
peusterma4edcd72016-03-07 15:53:33 +010037 pip: name=six state=latest
peusterma1a5ed02016-03-07 15:29:20 +010038
stevenvanrossema29c50c2016-02-16 14:37:44 +010039 - name: install ryu
peusterma4edcd72016-03-07 15:53:33 +010040 pip: name=ryu state=latest
stevenvanrossem0e17de22016-02-18 16:22:05 +010041
42 - name: install oslo.config
peusterma4edcd72016-03-07 15:53:33 +010043 pip: name=oslo.config state=latest
cgeoffroy840f1792016-03-03 16:53:52 +010044
45 - name: install pytest
peusterma4edcd72016-03-07 15:53:33 +010046 pip: name=pytest state=latest
peusterme26487b2016-03-08 14:00:21 +010047
48 - name: install Flask
49 pip: name=Flask state=latest
50
51 - name: install flask_restful
52 pip: name=flask_restful state=latest
peusterm795f04f2016-03-24 10:32:18 +010053
54 - name: install requests
55 pip: name=requests state=latest
56
57 - name: install docker-py
58 pip: name=docker-py state=latest
stevenvanrossemc6abf132016-04-14 11:15:58 +020059
60 - name: install prometheus_client
61 pip: name=prometheus_client state=latest
62
peusterm5877ea22016-05-11 13:44:59 +020063 - name: install paramiko
64 pip: name=paramiko state=latest
65
stevenvanrossemc6abf132016-04-14 11:15:58 +020066
67