aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/install-deps/tasks/main.yml
blob: e3f52cd754c4648dcda19dee15c24920acefe89e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: Install OS dependencies
  apt:  pkg={{ item }}
        state=latest
        update_cache=yes
  with_items:
    - build-essential
    - git
    - lsb-release
    - python-apt
    - python-pip
    - python-pycurl
    - python-virtualenv
    - python2.7-dev
  tags:
    - install
    - deps

- include: install-mongodb.yml
- include: install-redis.yml