fix: Apply linter fixes 🚨
Some checks failed
CI / lint (push) Failing after 13s
CI / release (push) Has been skipped
CI / notify (push) Has been skipped

This commit is contained in:
2024-08-20 11:32:48 +12:00
parent 744235ec45
commit 50725f0195
5 changed files with 18 additions and 16 deletions

View File

@@ -5,7 +5,7 @@
package:
name: '{{ item }}'
state: present
update_cache: yes
update_cache: true
with_flattened:
- '{{ csf_required_packages }}'
- '{{ csf_required_packages_dist }}'
@@ -19,7 +19,7 @@
- name: download csf.tgz
get_url:
url: 'https://download.configserver.com/csf.tgz'
url: 'https://download.configserver.com/csf.tgz'
dest: '{{ csf_tmp_dir }}/csf.tgz'
checksum: 'sha256:https://www.configserver.com/checksums.txt'
when: not csf_sbin_file.stat.exists
@@ -27,10 +27,10 @@
- download
- name: unpack csf.tgz
unarchive: # noqa 208
src: '{{ csf_tmp_dir }}/csf.tgz'
unarchive: # noqa 208
src: '{{ csf_tmp_dir }}/csf.tgz'
dest: '{{ csf_tmp_dir }}'
remote_src: yes
remote_src: true
creates: '{{ csf_tmp_dir }}/csf/install.sh'
when: not csf_sbin_file.stat.exists