X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=ansible%2Finstall.yml;h=fc25d48929a034c65a41c1090df2a0ab6326b1c3;hp=cd43336452903c0c017c9f633a9dc4a6d11fee7f;hb=ca164cf8efbc5d76c7c8ae25f4a3bffcb983c364;hpb=a541a3b3cfa1aa3e0a73c680773db9e78736afd3 diff --git a/ansible/install.yml b/ansible/install.yml index cd43336..fc25d48 100755 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -12,6 +12,12 @@ - name: install libzmq-dev apt: pkg=libzmq-dev state=installed + - name: install libffi-dev + apt: pkg=libffi-dev state=installed + + - name: install libssl-dev + apt: pkg=libssl-dev state=installed + - name: install pip apt: pkg=python-pip state=installed @@ -47,3 +53,24 @@ - 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 state=latest + + - name: install iptc + pip: name=python-iptables state=latest + + - name: install ipaddress + pip: name=ipaddress state=latest + + +