summaryrefslogtreecommitdiff
path: root/ansible/playbooks/setup_other_tools.yaml
blob: ef7eec678882f4d75f12cf7eeaa8b8217b32d96c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
# vim:ff=unix ts=2 sw=2 ai expandtab

- name: "Ensuring that git is installed"
  apt: name=git

- name: "Creating turbine directory"
  file: path=~/checkout state=directory mode=755

- name: "Cloning turbine"
  git: repo=git://git.gnome.org/turbine
       dest=~/checkout/turbine

- name: "Installing turbine"
  shell: cd ~/checkout/turbine && python setup.py install

- name: "Installing transifex client"
  shell: pip install transifex-client