
* Separate OSTYPE specific tasks/files. * Keep only common tasks and files in the playbooks dir. TODO pxe case to be working for centos as well note, the cmtools.sh installs ansible 2.0.1.0 in centos7, while we have 2.0.0.2 for ubuntu trusty note, the base.yaml installs python-keystoneclient 1:1.3.0-1.el7 from kilo-2 (no juno for centos7), while for ubuntu we have one from juno note, there is no pygraphviz for centos7, see also https://bugs.launchpad.net/fuel/+bug/1510884 Closes-bug: #1548851 Change-Id: Icec5637f9242104322d1104725f9f132d1ca16f0 Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
64 lines
1.1 KiB
YAML
64 lines
1.1 KiB
YAML
---
|
|
|
|
- shell: sudo apt-get update
|
|
|
|
- name: Base packages
|
|
apt: name={{ item }} state=present
|
|
with_items:
|
|
- git
|
|
- subversion
|
|
- python-keystoneclient
|
|
- python-mysqldb
|
|
- python-setuptools
|
|
- ruby-dev
|
|
- unzip
|
|
# Graph drawing
|
|
- python-pygraphviz
|
|
# Other tools
|
|
- htop
|
|
- jq
|
|
- tmux
|
|
- vim-nox
|
|
- mc
|
|
# Dev
|
|
- ipython
|
|
- python-pudb
|
|
- python-dev
|
|
- python-virtualenv
|
|
# Required by packer
|
|
- build-essential
|
|
# for torrent transport
|
|
- python-libtorrent
|
|
# for riak python package
|
|
- libffi-dev
|
|
- libssl-dev
|
|
|
|
# computable inputs lua
|
|
- libluajit-5.1-dev
|
|
# for tests on jenkins
|
|
- sshpass
|
|
|
|
# for pg backend
|
|
- python-psycopg2
|
|
|
|
- name: Uninstall packages
|
|
apt: name={{ item }} state=absent
|
|
with_items:
|
|
- python-pbr
|
|
|
|
# PIP
|
|
- pip: name={{item}} state=present
|
|
with_items:
|
|
- httpie
|
|
- docker-py==1.1.0
|
|
- ujson
|
|
- tox
|
|
- riak
|
|
- pbr
|
|
# for pg backend
|
|
- psycogreen
|
|
|
|
# pre install solare requirements
|
|
- shell: pip install -r https://raw.githubusercontent.com/openstack/solar/master/requirements.txt
|
|
- shell: pip install -r https://raw.githubusercontent.com/Mirantis/solar-agent/master/requirements.txt
|