summaryrefslogtreecommitdiff
path: root/tools/dev_env_setup/playbooks/jhbuild_run.yaml
diff options
context:
space:
mode:
authorSrdjan Grubor <sgnn7@sgnn7.org>2014-01-21 19:30:57 -0800
committerSrdjan Grubor <sgnn7@sgnn7.org>2014-01-21 19:30:57 -0800
commitce5a91b83397d581f0e22fc954329cc09e6608bc (patch)
treead5d497f9e6e57159d7b9ef11126f4a8c1dbee55 /tools/dev_env_setup/playbooks/jhbuild_run.yaml
parent2b14911667321d895ec3e1b7343fc5dfa85bcfdb (diff)
Cleaned the scripts up to not be split by sudo prefix by using sudo variable per task
[endlessm/eos-sdk#1620]
Diffstat (limited to 'tools/dev_env_setup/playbooks/jhbuild_run.yaml')
-rw-r--r--tools/dev_env_setup/playbooks/jhbuild_run.yaml21
1 files changed, 8 insertions, 13 deletions
diff --git a/tools/dev_env_setup/playbooks/jhbuild_run.yaml b/tools/dev_env_setup/playbooks/jhbuild_run.yaml
index ff9d290..744af74 100644
--- a/tools/dev_env_setup/playbooks/jhbuild_run.yaml
+++ b/tools/dev_env_setup/playbooks/jhbuild_run.yaml
@@ -1,19 +1,14 @@
---
# vim:ff=unix ts=2 sw=2 ai expandtab
--
- hosts: dev_machine
+- name: "Installing jhbuild dependencies - this may take a very long time"
+ shell: executable=/bin/bash echo -e "y\n" | ~/.local/bin/jhbuild sysdeps --install
sudo: False
- vars_files:
- - "../default_variables.yaml"
-
- tasks:
- - name: "Installing jhbuild dependencies - this may take a very long time"
- shell: executable=/bin/bash echo -e "y\n" | ~/.local/bin/jhbuild sysdeps --install
-
- - name: "Installing auth key"
- template: src=../templates/.jhbuildrc-auth.j2 dest=~/.jhbuildrc-auth
+- name: "Installing auth key"
+ template: src=../templates/.jhbuildrc-auth.j2 dest=~/.jhbuildrc-auth
+ sudo: False
- - name: "Cloning relevant modules - this will take a very long time - use htop and watch for git processes"
- shell: executable=/bin/bash ~/.local/bin/jhbuild update endless-apps
+- name: "Cloning relevant modules - this will take a very long time - use htop and watch for git processes"
+ shell: executable=/bin/bash ~/.local/bin/jhbuild update endless-apps
+ sudo: False