diff --git a/playbooks/create_folder.yml b/playbooks/create_folder.yml new file mode 100644 index 0000000..b3a58a1 --- /dev/null +++ b/playbooks/create_folder.yml @@ -0,0 +1,9 @@ +- name: Create folder C:\a + hosts: win-test + gather_facts: no + + tasks: + - name: Ensure C:\a exists + ansible.windows.win_file: + path: C:\a + state: directory