X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=ansible%2Finstall.yml;h=7fed451074b8415a68c1ba8d55fea443b1fbdcbc;hb=842b5741792543389b9cc77ee898cc8c412b9416;hp=6e1a1dce4d38ed9504a088bb7960f482f30cdc67;hpb=61db576adc6ba07ed0cbf294c653558c54b0858f;p=osm%2Fvim-emu.git diff --git a/ansible/install.yml b/ansible/install.yml old mode 100644 new mode 100755 index 6e1a1dc..7fed451 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -1,19 +1,73 @@ -hosts: localhost +- hosts: localhost tasks: - name: updates apt apt: update_cache=yes + + - name: install python-dev + apt: pkg=python-dev state=installed + + - name: install python-zmq + apt: pkg=python-zmq state=installed + + - 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 + - name: install setuptools + pip: name=setuptools state=latest + - name: install zerorpc - pip: name=zerorpc + pip: name=zerorpc 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-py + pip: name=docker-py version=1.7.1 + + - name: install prometheus_client + pip: name=prometheus_client state=latest + + - name: install paramiko + pip: name=paramiko state=latest + + - name: install latest urllib3 (fix error urllib3.connection.match_hostname = match_hostname) + pip: name=urllib3 state=latest + + - - name: install pprint - pip: name=pprint