mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-10-31 08:28:54 +01:00
Bugfix: Checking of hash fixed for k3s v0.3.0 release
This commit is contained in:
parent
728dd1ff12
commit
27083e1d5b
@ -19,7 +19,8 @@
|
||||
- name: Ensure sha256sum is set from hashsum variable
|
||||
shell: >
|
||||
set -o pipefail && \
|
||||
echo "{{ k3s_hash_sum_raw.content }}" | grep 'k3s' | awk '{ print $1 }'
|
||||
echo "{{ k3s_hash_sum_raw.content }}" | \
|
||||
grep -E ' k3s{{ k3s_arch_suffix }}$' | awk '{ print $1 }'
|
||||
changed_when: false
|
||||
args:
|
||||
executable: /bin/bash
|
||||
|
Loading…
Reference in New Issue
Block a user