From e398e246dabf82479cbbcb1327e759e6838e4a13 Mon Sep 17 00:00:00 2001 From: L3D Date: Wed, 28 Dec 2022 17:30:06 +0100 Subject: [PATCH] update linting --- tasks/directory.yml | 4 ++-- tasks/files.yml | 2 +- tasks/main.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tasks/directory.yml b/tasks/directory.yml index d0c009d..20d5a4a 100644 --- a/tasks/directory.yml +++ b/tasks/directory.yml @@ -1,10 +1,10 @@ --- -- name: create folder for obs szene +- name: Create folder for obs szene ansible.windows.win_file: path: 'C:\obs\{{ win_obs_szene__project }}' state: directory -- name: create additional dirs +- name: Create additional dirs ansible.windows.win_file: path: 'C:\obs\{{ win_obs_szene__project }}\{{ item }}' state: directory diff --git a/tasks/files.yml b/tasks/files.yml index d7e47fc..3ee23ff 100644 --- a/tasks/files.yml +++ b/tasks/files.yml @@ -1,5 +1,5 @@ --- -- name: download defined files +- name: Download defined files ansible.windows.win_get_url: url: '{{ item.src }}' dest: 'C:\obs\{{ win_obs_szene__project }}\{{ item.file }}' diff --git a/tasks/main.yml b/tasks/main.yml index 8580cf6..4649da3 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,6 +1,6 @@ --- -- name: setup directory +- name: Setup directory ansible.builtin.include_tasks: directory.yml -- name: download files from web +- name: Download files from web ansible.builtin.include_tasks: files.yml