From: peusterm Date: Thu, 14 Jan 2016 15:30:04 +0000 (+0100) Subject: added Ansible based install script X-Git-Tag: v3.1~185^2~14 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=commitdiff_plain;h=61db576adc6ba07ed0cbf294c653558c54b0858f added Ansible based install script --- diff --git a/ansible/install.yml b/ansible/install.yml new file mode 100644 index 0000000..6e1a1dc --- /dev/null +++ b/ansible/install.yml @@ -0,0 +1,19 @@ +hosts: localhost + tasks: + - name: updates apt + apt: update_cache=yes + + - name: install pip + apt: pkg=python-pip state=installed + + - name: install zerorpc + pip: name=zerorpc + + - name: install tabulate + pip: name=tabulate + + - name: install argparse + pip: name=argparse + + - name: install pprint + pip: name=pprint