We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9714b8 commit 9af62f8Copy full SHA for 9af62f8
1 file changed
ansible/roles/sauron/tasks/main.yml
@@ -1,19 +1,19 @@
1
---
2
- name: reset weave
3
- command: "{{weave_path}} reset"
+ command: "{{ weave_path }} reset"
4
when: weave_reset is defined
5
sudo: yes
6
7
- name: install weave
8
- get_url: url=https://github.com/zettio/weave/releases/download/v0.11.1/weave
9
- dest="{{weave_path}}"
+ get_url: url=https://github.com/weaveworks/weave/releases/download/v1.1.2/weave
+ dest="{{ weave_path }}"
10
mode=0777
11
force=yes
12
13
register: weave_install
14
15
- name: setup weave
16
- command: "{{weave_path}} setup"
+ command: "{{ weave_path }} setup"
17
when: weave_install.changed
18
19
0 commit comments