[ansible-project] Multiple Ansible YAML File Into SIngle

2020-09-16 Thread surabhy vaishakh
How to merge multiple YAML file into a single one? -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-project+unsubscr...@googlegroups.com. To view this

Re: [ansible-project] How to add python path to environment variable using ansible

2020-09-15 Thread surabhy vaishakh
e.com/ansible/latest/modules/win_environment_module.html > ? > > On Tue, 15 Sep 2020 at 13:53, surabhy vaishakh > wrote: > > > > Can any one help with this? > > > > I am trying to install python 2.7 msi using ansible. Installation > succeeded. But not s

[ansible-project] How to add python path to environment variable using ansible

2020-09-15 Thread surabhy vaishakh
Can any one help with this? I am trying to install python 2.7 msi using ansible. Installation succeeded. But not sure how to add to environment variable using ansible. Pls help. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To

[ansible-project] How to download a folder from sharepoint

2020-09-09 Thread surabhy vaishakh
Hello all, Can anyone help me to down a folder from sharepoint ? Thanks, Surabhy -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [ansible-project] How to download a s3 folder using playbook

2020-09-09 Thread surabhy vaishakh
}" > dest: "{{ item| dirname }}/{{ item|basename }}" > with_items: "{{ s3_bucket_items.s3_keys }}" > > > Il giorno mer 9 set 2020 alle ore 08:16 surabhy vaishakh < > surabhyvaish...@gmail.com> ha scritto: > >> Can anyone help with this? >&g

Re: [ansible-project] How to download a s3 folder using playbook

2020-09-09 Thread surabhy vaishakh
Can you pls provide an example playbook On Wed, Sep 9, 2020, 12:04 PM Tom Black wrote: > surabhy vaishakh wrote: > > Can anyone help with this? > > I am trying to download a s3folder using ansible playbook. > > You should be able to use s3 SDK for this stuff. > > a

[ansible-project] How to download a s3 folder using playbook

2020-09-09 Thread surabhy vaishakh
Can anyone help with this? I am trying to download a s3folder using ansible playbook. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [ansible-project] Re: How to install Ansible on a windows 2012 R server

2020-08-27 Thread surabhy vaishakh
I want to install ansible inside a windows server. Which will act as ansible master. On Thu, Aug 27, 2020, 12:06 PM esxi...@gmail.com wrote: > I would suggest use Linux as your control host. You mean you want Ansible > to manage Windows OS configs ? > > On Sunday, August 23, 2020 at 10:49:28

[ansible-project] cygwin and VMprotect in Silent mode on a windows machine-Playbook

2020-08-25 Thread surabhy vaishakh
Hello, Can anyone help me to get a playbook to install cygwin and VMprotect in Silent mode on a windows machine. Ansible Master - Linux Ansible-Node- Windows Package: cygwin VM protect Thanks, Surabhy -- You received this message because you are subscribed to the Google Groups "Ansible

[ansible-project] GIT configuration using ansible

2020-08-23 Thread surabhy vaishakh
Hello Team, I want to install git using ansible and try to configure using below commands. git config --global user.name "Your Name" (Choose a proper name. Eg: surabhy.mr) git config --global user.email "surabh...@gmail.com" I am able to install GIT but unable to configure. --- - hosts: win

[ansible-project] How to install Ansible on a windows 2012 R server

2020-08-23 Thread surabhy vaishakh
Hello Team, Can any one help me to get steps to install ansible on a windows 2012 R server. Thanks, Surabhy -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email

[ansible-project] unable to install .exe files using win package module on a windows sever

2020-08-11 Thread surabhy vaishakh
--- - name: Install DXSDK hosts: win tasks: - name: Download DXSDK win_get_url: url: https://download.microsoft.com/download/3/A/5/3A53CE87-F5C9-4CE5-92E1-5E2AF4841741/DXSDK_Mar09.exe dest: C:\Program Files\ansibleinstaller\XSDK_Mar09.exe - name: Install exe