60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
---
|
|
|
|
- shell: apt-get update
|
|
|
|
- name: Base packages
|
|
apt: name={{ item }} state=present
|
|
with_items:
|
|
- git
|
|
- subversion
|
|
- python-mock
|
|
- python-keystoneclient
|
|
- python-mysqldb
|
|
- python-setuptools
|
|
- ruby-dev
|
|
- unzip
|
|
# Redis
|
|
- redis-server
|
|
# Graph drawing
|
|
- python-pygraphviz
|
|
# Other tools
|
|
- htop
|
|
- jq
|
|
- tmux
|
|
- vim
|
|
# Dev
|
|
- ipython
|
|
- python-pudb
|
|
- python-dev
|
|
- python-virtualenv
|
|
# Required by packer
|
|
- build-essential
|
|
|
|
# PIP
|
|
#- apt: name=python-pip state=absent
|
|
#- shell: easy_install pip
|
|
#- shell: pip install -U pip
|
|
#- shell: pip install -U setuptools
|
|
- shell: pip install httpie
|
|
- shell: pip install docker-py==1.1.0
|
|
|
|
# Redis
|
|
- shell: pip install redis
|
|
- lineinfile: dest=/etc/redis/redis.conf regexp='^bind ' line='bind 0.0.0.0'
|
|
- service: name=redis-server state=restarted
|
|
|
|
# Ubuntu OpenStack packages
|
|
#- apt: name=ubuntu-cloud-keyring state=present
|
|
#- shell: echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu trusty-updates/kilo main" > /etc/apt/sources.list.d/cloudarchive-kilo.list
|
|
#- shell: echo "deb http://osci-mirror-poz.infra.mirantis.net/pkgs/ubuntu-2015-06-25-194717 trusty-updates main" > /etc/apt/sources.list.d/fuel-kilo.list
|
|
#- shell: echo "deb http://osci-mirror-poz.infra.mirantis.net/pkgs/ubuntu-latest trusty main" > /etc/apt/sources.list.d/fuel-kilo.list
|
|
# cloudarchive key
|
|
#- shell: apt-key adv --recv-key --keyserver keyserver.ubuntu.com 5EDB1B62EC4926EA
|
|
# some other keys
|
|
#- shell: apt-key adv --recv-key --keyserver keyserver.ubuntu.com 9D6D8F6BC857C906
|
|
#- shell: apt-key adv --recv-key --keyserver keyserver.ubuntu.com 7638D0442B90D010
|
|
# mirantis poznan
|
|
#- shell: apt-key adv --recv-key --keyserver keyserver.ubuntu.com 40976EAF437D05B5
|
|
#- shell: apt-key adv --recv-key --keyserver keyserver.ubuntu.com 3B4FE6ACC0B21F32
|
|
#- shell: apt-get update
|