update linting

This commit is contained in:
L3D 2022-12-28 17:30:53 +01:00
parent c070d993f9
commit 0e50b12e8a
Signed by: l3d
GPG key ID: CD08445BFF4313D1
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
path: C:\OBS path: C:\OBS
state: directory state: directory
- name: download reaper plugin - name: Download reaper plugin
ansible.windows.win_get_url: ansible.windows.win_get_url:
url: "{{ win_reaplugs__srv }}/{{ win_reaplugs__file }}" url: "{{ win_reaplugs__srv }}/{{ win_reaplugs__file }}"
dest: C:\OBS\{{ win_reaplugs__file }} dest: C:\OBS\{{ win_reaplugs__file }}

View file

@ -1,10 +1,10 @@
--- ---
- name: verify if plugin is probably installed - name: Verify if plugin is probably installed
ansible.windows.win_stat: ansible.windows.win_stat:
path: "{{ win_reaplugs__installpath }}" path: "{{ win_reaplugs__installpath }}"
register: folder_info register: folder_info
- name: download reaper plugin - name: Download reaper plugin
ansible.builtin.include_tasks: download.yml ansible.builtin.include_tasks: download.yml
when: when:
- not folder_info.stat.exists | bool - not folder_info.stat.exists | bool