Skip to content

Commit ee4dcc2

Browse files
committed
Fix install task issue
1 parent 2fd88af commit ee4dcc2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,7 @@
191191
- Updated init script templates
192192
- Updated systemd unit template
193193
- Convert to local action plays
194+
195+
## v1.6.0
196+
197+
- Fix install task issue

tasks/install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
tags: installation
3030

3131
- name: Check Nomad package file
32-
local_action stat path="{{ role_path }}/files/{{ nomad_pkg }}"
32+
local_action: stat path="{{ role_path }}/files/{{ nomad_pkg }}"
3333
become: no
3434
run_once: true
3535
register: nomad_package
3636

3737
- name: Download Nomad
38-
local_actoin: get_url url="{{ nomad_zip_url }}" dest="{{ role_path }}/files/{{ nomad_pkg }}" checksum="sha256:{{ nomad_sha256.stdout }}" timeout="42"
38+
local_action: get_url url="{{ nomad_zip_url }}" dest="{{ role_path }}/files/{{ nomad_pkg }}" checksum="sha256:{{ nomad_sha256.stdout }}" timeout="42"
3939
become: no
4040
run_once: true
4141
tags: installation

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.6.0
1+
v1.6.1

0 commit comments

Comments
 (0)