[ansible-project] ansible 2.9 et NT AUTHORITY\SYSTEM - bad ?

2023-05-24 Thread sergey....@gmail.com
Pardon my English. I have a fully configured CentOS 7. I want to overwrite a file from a remote samba server (it enters AD via winbind) to a remote windows computer in the same domain. In the beginning, nothing worked. I added a line: ansible_become_flags: logon_type=new_credentials logon_flags

[ansible-project] Need to download Multiple files from Gitlab using Ansible

2023-05-24 Thread Amit Kulkarni
Hello All, I need to download multiple files from Gitlab, i am able to download one file using below playbook but I need help to download multiple files from Gitlab. Here is the sample playbook I wanted to read the file names into ansible playbook and download from Gitlab. Appreciate your help o

[ansible-project] Re: ansible 2.9 et NT AUTHORITY\SYSTEM - bad ?

2023-05-24 Thread sergey....@gmail.com
I use 2.9 and playbook --- - name: become as SYSTEM win_whoami: become: yes become_method: runas become_user: System register: sys_whoami - debug: var=sys_whoami --- All work no problem. Add line : ansible_become_flags: logon_type=new_credentials logon_fla

Re: [ansible-project] Need to download Multiple files from Gitlab using Ansible

2023-05-24 Thread Dick Visser
https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html On Thu, 25 May 2023 at 03:08, Amit Kulkarni wrote: > Hello All, > > I need to download multiple files from Gitlab, i am able to download one > file using below playbook but I need help to download multiple files from >