X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=ansible%2Finstall.yml;h=642403e6e0376d4a0dbe919c4c3e73ff2a20a1a3;hp=6e73908bca0404e4c9288c254cf9a6d9d38dc1f0;hb=3509418dfc0daa78b3a5afe3f47fdc07acc18442;hpb=7303abc38b4751466953c8db55815c63df6687ac diff --git a/ansible/install.yml b/ansible/install.yml old mode 100644 new mode 100755 index 6e73908..642403e --- a/ansible/install.yml +++ b/ansible/install.yml @@ -6,20 +6,65 @@ - name: install python-dev apt: pkg=python-dev state=installed - - name: install python-zmq - apt: pkg=python-zmq state=installed + - name: install libffi-dev + apt: pkg=libffi-dev state=installed - - name: install libzmq-dev - apt: pkg=libzmq-dev state=installed + - name: install libssl-dev + apt: pkg=libssl-dev state=installed - name: install pip apt: pkg=python-pip state=installed - - name: install zerorpc - pip: name=zerorpc + - name: install setuptools + pip: name=setuptools state=latest - name: install tabulate - pip: name=tabulate + pip: name=tabulate state=latest - name: install argparse - pip: name=argparse + pip: name=argparse state=latest + + - name: install networkx + pip: name=networkx state=latest + + - name: install six + pip: name=six state=latest + + - name: install ryu + pip: name=ryu state=latest + + - name: install oslo.config + pip: name=oslo.config state=latest + + - name: install pytest + pip: name=pytest state=latest + + - name: install Flask + pip: name=Flask state=latest + + - name: install flask_restful + pip: name=flask_restful state=latest + + - name: install requests + pip: name=requests state=latest + + - name: install docker + pip: name=docker version=2.0.2 + + - name: install prometheus_client + pip: name=prometheus_client state=latest + + - name: install latest urllib3 (fix error urllib3.connection.match_hostname = match_hostname) + pip: name=urllib3 version=1.21.1 + + - name: install iptc + pip: name=python-iptables state=latest + + - name: install ipaddress + pip: name=ipaddress state=latest + + #- name: install urllib + # pip: name=urllib state=latest + + +