We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d860b02 commit b474bc2Copy full SHA for b474bc2
3 files changed
ansible/group_vars/alpha-sauron.yml
@@ -1,7 +1,7 @@
1
# upstart template variables
2
name: sauron
3
4
-app_name: {{ name }}
+app_name: "{{ name }}"
5
app_repo: "git@github.com:CodeNow/{{ name }}.git"
6
7
redis_host: "{{ hostvars[groups['redis'][0]]['ansible_default_ipv4']['address'] }}"
ansible/roles/git_node_service/handlers/main.yml
@@ -1,5 +1,6 @@
---
- name: npm install {{ app_name }}
+ sudo: yes
npm: path=/opt/runnable/{{ app_name }}
- name: restart service {{ app_name }}
ansible/roles/sauron/tasks/main.yml
@@ -5,7 +5,7 @@
sudo: yes
- name: install weave
8
- get_url: url=https://github.com/weaveworks/weave/releases/download/v1.1.2/weave
+ get_url: url=https://github.com/weaveworks/weave/releases/download/v1.2.0/weave
9
dest="{{ weave_path }}"
10
mode=0777
11
force=yes
0 commit comments