diff --git a/playbooks/install_software_win.yml b/playbooks/install_software_win.yml index d475606..87ddf91 100644 --- a/playbooks/install_software_win.yml +++ b/playbooks/install_software_win.yml @@ -21,6 +21,14 @@ username: "{{ smb_user }}" password: "{{ smb_pass }}" state: present + + - name: List files on Z drive (Debug) + ansible.windows.win_shell: Get-ChildItem -Path Z:\ + register: dir_out + + - name: Show files + debug: + var: dir_out.stdout_lines # --- СЮДА ВСТАВЛЯЕМ УСТАНОВКУ ---