Skip to content

Instantly share code, notes, and snippets.

@EHER
Created January 22, 2013 01:40
Show Gist options
  • Save EHER/4591309 to your computer and use it in GitHub Desktop.
Save EHER/4591309 to your computer and use it in GitHub Desktop.
---
- hosts: loide
user: ubuntu
sudo: yes
tasks:
- name: ensure build-essential is installed
action: apt pkg=build-essential state=installed
- name: ensure devscripts is installed
action: apt pkg=devscripts state=installed
- name: ensure cdbs is installed
action: apt pkg=cdbs state=installed
- name: ensure python-twisted is installed
action: apt pkg=python-twisted state=installed
- name: ensure python-setuptools is installed
action: apt pkg=python-setuptools state=installed
- name: ensure python-simplejson is installed
action: apt pkg=python-simplejson state=installed
- name: ensure redis-server is installed
action: apt pkg=redis-server state=installed
- name: ensure git is installed
action: apt pkg=git state=installed
- name: clone Bricklayer repository
action: git repo=git://github.com/locaweb/bricklayer.git dest=~/bricklayer
- name: build Bricklayer
action: command dpkg-buildpackage -rfakeroot chdir=~/bricklayer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment