Skip to content

Commit

Permalink
Replaced deprecated sha256sum key with checksum (#46)
Browse files Browse the repository at this point in the history
Fixes deprecation warning:

```
TASK [gantsign.antigen : download Antigen] ***************************************************************
[DEPRECATION WARNING]: The parameter "sha256sum" has been deprecated and will be removed, use "checksum" 
instead. This feature will be removed from ansible-base in version 2.14. Deprecation warnings can be 
disabled by setting deprecation_warnings=False in ansible.cfg.
```
  • Loading branch information
commonwealthEnvoy authored May 2, 2021
1 parent dc8219d commit 2e3f571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
get_url:
url: '{{ antigen_redis_mirror }}/{{ antigen_redis_filename }}'
dest: '{{ antigen_download_dir }}/{{ antigen_local_filename }}'
sha256sum: '{{ antigen_redis_sha256sum }}'
checksum: 'sha256:{{ antigen_redis_sha256sum }}'
mode: 'u=rw,go=r'

- name: create install directory
Expand Down

0 comments on commit 2e3f571

Please sign in to comment.