From ee539057a3e7387b95736dc85bd4d9af5c8e552c Mon Sep 17 00:00:00 2001 From: Srdjan Grubor Date: Tue, 14 Jan 2014 15:42:34 -0600 Subject: Added code that can run sudo tasks and install turbine/transifex client --- ansible/playbooks/setup_jhbuild.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'ansible/playbooks/setup_jhbuild.yaml') diff --git a/ansible/playbooks/setup_jhbuild.yaml b/ansible/playbooks/setup_jhbuild.yaml index 3df6a63..fdbb0c0 100644 --- a/ansible/playbooks/setup_jhbuild.yaml +++ b/ansible/playbooks/setup_jhbuild.yaml @@ -3,17 +3,22 @@ - name: "Ensuring that git is installed" apt: name=git + - name: "Creating checkout directory" file: path=~/checkout state=directory mode=755 + - name: "Cloning jhbuild" git: repo=git://git.gnome.org/jhbuild dest=~/checkout/jhbuild -- name: "Installing jhbuildi - autogen" +- name: "Installing jhbuild - autogen" shell: cd ~/checkout/jhbuild && ./autogen.sh -- name: "Installing jhbuildi - make" +- name: "Installing jhbuild - make" shell: cd ~/checkout/jhbuild && make -- name: "Installing jhbuildi - make install" +- name: "Installing jhbuild - make install" shell: cd ~/checkout/jhbuild && make install + +- name: "Creating glib schemas dir" + file: path=~/install/share/glib-2.0/schemas state=directory mode=755 -- cgit v1.2.3