summaryrefslogtreecommitdiff
path: root/ansible/playbooks/setup_other_tools.yaml
blob: 126a68b6269ae7706e929c3b7d41a0acd2d15832 (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 update_cache=true cache_valid_time=259200

- 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