Skip to content

Commit

Permalink
Changed to FQCN for builtin actions (#48)
Browse files Browse the repository at this point in the history
To follow the current ansible-lint rule.
  • Loading branch information
DO1JLR authored and freemanjp committed Apr 10, 2022
1 parent 53c0008 commit f49dba9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
- name: create download directory
file:
ansible.builtin.file:
state: directory
mode: 'u=rwx,go=rx'
dest: '{{ bat_download_dir }}'

- name: download bat
get_url:
ansible.builtin.get_url:
url: '{{ bat_redis_url }}'
checksum: 'sha256:{{ bat_redis_sha256sum }}'
dest: '{{ bat_download_dir }}/{{ bat_redis_filename }}'
Expand All @@ -15,5 +15,5 @@

- name: install bat
become: yes
apt:
ansible.builtin.apt:
deb: '{{ bat_download_dir }}/{{ bat_redis_filename }}'

0 comments on commit f49dba9

Please sign in to comment.