From f49dba9f447ae01a73d61bf582b68585e4414d5b Mon Sep 17 00:00:00 2001 From: L3D Date: Sun, 10 Apr 2022 23:26:58 +0200 Subject: [PATCH] Changed to FQCN for builtin actions (#48) To follow the current ansible-lint rule. --- tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 9086789..4d08366 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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 }}' @@ -15,5 +15,5 @@ - name: install bat become: yes - apt: + ansible.builtin.apt: deb: '{{ bat_download_dir }}/{{ bat_redis_filename }}'