Use 5985 with krb5.conf.

If you are using 18.0+ I wrote a blog about it last year. Some variables may 
have changed but the concept stays the same. Just use new ones listed in 
awx-operator

http://weiyentan.github.io/2021/Installing-awx-kubernetes/

Get Outlook for iOS<https://aka.ms/o0ukef>
________________________________
From: 'Nicholas Branson' via Ansible Project <[email protected]>
Sent: Wednesday, August 24, 2022 11:28:42 PM
To: Ansible Project <[email protected]>
Subject: Re: [ansible-project] win_ping.yml

domain account

On Wednesday, 24 August 2022 at 12:14:02 UTC+1 [email protected] wrote:
Are you connecting through domain or workgroup? It looks like you are 
connecting through domain credentials through to 5986. From experience this 
gets finicky. I always use 5985 with domain credentials in conjunction with a 
krb5.conf file

Get Outlook for iOS<https://aka.ms/o0ukef>
________________________________
From: 'Nicholas Branson' via Ansible Project <[email protected]>
Sent: Wednesday, August 24, 2022 11:11:11 PM

To: Ansible Project <[email protected]>
Subject: Re: [ansible-project] win_ping.yml
Not sure my Inventories > Windows > Variables are correct. The ansible user is 
a domain service account.

---
ansible_shell_type: powershell
ansible_user: branyster.com<http://branyster.com>\ansible
ansible_password: mumstheword
ansible_connection: winrm
ansible_port: 5986
ansible_winrm_server_cert_validation: ignore
ansible_winrm_transport: kerberos
ansible_become: yes
become_user: svc-ansible
ansible_become_method: runas


fatal: [server20]: UNREACHABLE! => {"changed": false, "msg": "basic: the 
specified credentials were rejected by the server", "unreachable": true}

On Wednesday, 24 August 2022 at 11:45:14 UTC+1 Stu wrote:

It can,
We use vcloud director over the top of vmware and we can deploy orgs to vcd, 
create edge gateways, deploy vm’s input firewall rules and login and configure 
deployed vm’s once they are deployed.
windows machines are a little more difficult to connect to after a provision 
that linux servers but if you can get a winrm server up on those servers or an 
openssh server, you can connect and configure.


We use this module for vcd, 
https://github.com/vmware/ansible-module-vcloud-director

but you can do it direct to vcenter too, 
https://docs.ansible.com/ansible/2.6/vmware/scenario_clone_template.html






From: 'Nicholas Branson' via Ansible Project <[email protected]>
Sent: 24 August 2022 11:37
To: Ansible Project <[email protected]>
Subject: Re: [ansible-project] win_ping.yml



Caution: This email originated from outside of the organisation. Do not click 
links or open attachments unless you recognise the sender and know the content 
is safe



Management are now asking me,  Can Ansible / Ansible Tower Deploy Windows 
Systems ?   When I am still struggling to even ping a Windows server !

I've created win2019-tmp and win2022-tmp in VMware, I just need to demonstrate 
I can create the guest vm using these templates.





On Tuesday, 23 August 2022 at 16:01:11 UTC+1 [email protected] wrote:

Vars
---
ansible_shell_type: powershell
ansible_user: ansible
ansible_password: secret # not needed if using a credential in tower
ansible_connection: winrm
ansible_port: 5986
ansible_winrm_server_cert_validation: ignore
ansible_winrm_transport: credssp
ansible_become: yes # try the ping module without become
ansible_become_method: runas
ansible_become_user: administrator # add the become user when become and become 
method is used

Best to configure the user settings in the tower credention.




On 23/08/2022 16:19, "'Nicholas Branson' via Ansible Project" 
<[email protected]> wrote:
> So my Windows Inventory Vars is worng ?
>
> Vars
> ---
> ansible_shell_type: powershell
> ansible_user: ansible
> ansible_password: secret
> ansible_connection: winrm
> ansible_port: 5986
> ansible_winrm_server_cert_validation: ignore
> ansible_winrm_transport: credssp
> ansible_become: yes
> ansible_become_method: runas
>
> On Tuesday, 23 August 2022 at 15:15:45 UTC+1 Nicholas Branson wrote:
>
> "msg": "No setting was provided for required configuration
> plugin_type: become plugin: runas setting: become_user ",
>     "_ansible_no_log": false
>
>
> On Tuesday, 23 August 2022 at 15:09:58 UTC+1 [email protected] wrote:
>
> You can't become a user without their password.
>
> On Tuesday, August 23, 2022 at 9:52:56 AM UTC-4
> [email protected] wrote:
>
> I thought I might just need a become_user option
> adding.............
>
> On Tuesday, 23 August 2022 at 13:37:18 UTC+1
> [email protected] wrote:
>
> Hi again,
>
> You need to configure the credential in Tower and apply
> it to your template.
>
> In the credential settings you set the become user:
>
> Good luck,
>
>
> On 23/08/2022 14:03, 'Nicholas Branson' via Ansible
> Project wrote:
> > Thanks for replying Michael,
> >
> > I have made changes as recommended and now getting a
> > different error.
> >
> > FAILED  msg  The Powershell shell family is
> > incompatible with the sudo become plugin
> >
> > Something inside Tower Presumably
> >
> >
> > Regards,
> > Nick
> >
> > On Tuesday, 23 August 2022 at 12:05:25 UTC+1
> > [email protected] wrote:
> >
> > Hi Nick,
> >
> > Here is an example of a working config, note the
> > use of (hosts: all) in the playbook since the
> > inventory will be managed by Tower:
> >
> > ---
> >
> > - hosts: all
> >   tasks:
> >     - name: Ping windows host
> >       ansible.windows.win_ping:
> >       register: ping_result
> >
> >     - name: show ping result
> >       ansible.builtin.debug:
> >         var: ping_result
> >
> > Then in Tower create an inventory and add you
> > connection variables, I suggest you try basic
> > first the upgrade once you can establish a connection:
> >
> > Add your host to the inventory and select it when
> > creating the job template.
> >
> > Hope this helps.
> >
> > Regards,
> >
> >
> > On 23/08/2022 11:43, 'Nicholas Branson' via
> > Ansible Project wrote:
> >> I am still holding my Ansible Newbie Keys Tight !
> >>
> >> Not getting very far with Ansible Tower and
> >> Windows. Struggling to even Ping a Windows
> >> Server. I've configured WinRM service settings,
> >> Opened Firewall Port, etc.
> >>
> >> FAILED! msg No setting was provided for required
> >> configuration plugin type become plugin: runas
> >> setting: become_user
> >>
> >> win_ping.yml file
> >> ---
> >>   - name: win_ping module
> >>     hosts: windows
> >>     become: true
> >>     gather_facts: false
> >>     tasks:
> >>       - name: test connection
> >>         ansible.windows.win_ping:
> >>
> >> vars file
> >> ---
> >> ansible_shell_type: powershell
> >> ansible_user: Iwantmymummy
> >> ansible_password: secret not telling you lot !
> >> ansible_connection: winrm
> >> ansible_port: 5986
> >> ansible_winrm_server_cert_validation: ignore
> >> ansible_winrm_transport: credssp
> >> ansible_become_method: runas
> >>
> >> Does anyone know what is wrong and how I can move
> >> forward ?
> >>
> >> Many Thanks,
> >> Nick
> >>
> >>
> >>
> >>
> >> DISCLAIMER
> >>
> >> This email is confidential and subject to
> >> important disclaimers and conditions in relation
> >> to monitoring, viruses, confidentiality and legal
> >> privilege full details of which can be viewed on
> >> our Email Policy at the following link:
> >> http://www.next.co.uk/Policy/<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.next.co.uk%2FPolicy%2F&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=03LBnQdOONqPFU7ZjIC7FamjntnnPi%2BaBVhH1CzE8ZA%3D&reserved=0>
> >> <http://www.next.co.uk/Policy/<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.next.co.uk%2FPolicy%2F&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=03LBnQdOONqPFU7ZjIC7FamjntnnPi%2BaBVhH1CzE8ZA%3D&reserved=0>>
> >>
> >> Next Holdings Ltd registered in England 35161.
> >> Registered Office Desford Road Enderby Leicester
> >> LE19 4AT.  Authorised and regulated by the
> >> Financial Conduct Authority
> >>
> >> --
> >> 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
> >> [email protected].
> >> To view this discussion on the web visit
> >> https://groups.google.com/d/msgid/ansible-project/f875f002-c45c-4fd4-808a-1c189d6c30fan%40googlegroups.com<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fansible-project%2Ff875f002-c45c-4fd4-808a-1c189d6c30fan%2540googlegroups.com&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=HtCVuAZIpOfqw50LOlJrGozm2DdozNkmlWg1NaZjSwY%3D&reserved=0>
> >>  
> >> <https://groups.google.com/d/msgid/ansible-project/f875f002-c45c-4fd4-808a-1c189d6c30fan%40googlegroups.com?utm_medium=email&utm_source=footer<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fansible-project%2Ff875f002-c45c-4fd4-808a-1c189d6c30fan%2540googlegroups.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=OvxJLI1%2BbMdt6PnYBtlb1A4T52b0tUPKTBOhi50S6NM%3D&reserved=0>>.
> > --
> > Michael NELSON
> >
> >
> >
> > DISCLAIMER
> >
> > This email is confidential and subject to important
> > disclaimers and conditions in relation to monitoring,
> > viruses, confidentiality and legal privilege full
> > details of which can be viewed on our Email Policy at
> > the following link: 
> > http://www.next.co.uk/Policy/<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.next.co.uk%2FPolicy%2F&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=03LBnQdOONqPFU7ZjIC7FamjntnnPi%2BaBVhH1CzE8ZA%3D&reserved=0>
> > <http://www.next.co.uk/Policy/<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.next.co.uk%2FPolicy%2F&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=03LBnQdOONqPFU7ZjIC7FamjntnnPi%2BaBVhH1CzE8ZA%3D&reserved=0>>
> >
> > Next Holdings Ltd registered in England 35161.
> > Registered Office Desford Road Enderby Leicester LE19
> > 4AT. Authorised and regulated by the Financial Conduct
> > Authority
> >
> > --
> > 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
> > [email protected].
> > To view this discussion on the web visit
> > https://groups.google.com/d/msgid/ansible-project/b56a17c0-d94c-42f3-9c71-32139cc74aean%40googlegroups.com<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fansible-project%2Fb56a17c0-d94c-42f3-9c71-32139cc74aean%2540googlegroups.com&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=JjPtjZsVZlCVA6n9cbynbZOnj64cEzc9feXYkzae6CQ%3D&reserved=0>
> >  
> > <https://groups.google.com/d/msgid/ansible-project/b56a17c0-d94c-42f3-9c71-32139cc74aean%40googlegroups.com?utm_medium=email&utm_source=footer<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fansible-project%2Fb56a17c0-d94c-42f3-9c71-32139cc74aean%2540googlegroups.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567513266%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=G%2FbC7pk41x3%2FIaWH5cT%2BFTCV25KnXU9Ey%2Ba39PAfqN0%3D&reserved=0>>.
> --
> Michael NELSON
>
> ____
>
>
>
> DISCLAIMER
>
> This email is confidential and subject to important disclaimers and
> conditions in relation to monitoring, viruses, confidentiality and legal
> privilege full details of which can be viewed on our Email Policy at the
> following link: 
> http://www.next.co.uk/Policy/<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.next.co.uk%2FPolicy%2F&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567669500%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=GSXD5cBmc6AQfkWutv7IJmPvnCsyytbxJAnIyMlCKrc%3D&reserved=0>
> <http://www.next.co.uk/Policy/<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.next.co.uk%2FPolicy%2F&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567669500%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=GSXD5cBmc6AQfkWutv7IJmPvnCsyytbxJAnIyMlCKrc%3D&reserved=0>>
>
> Next Holdings Ltd registered in England 35161.  Registered Office
> Desford Road Enderby Leicester LE19 4AT. Authorised and regulated by the
> Financial Conduct Authority
>
> --
> 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 [email protected]
> <mailto:[email protected]>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/8de61124-119f-4cda-b20d-0af624e589d5n%40googlegroups.com<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fansible-project%2F8de61124-119f-4cda-b20d-0af624e589d5n%2540googlegroups.com&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567669500%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=p%2FokGhRX96g04FlydsdXlJ%2FvmimH2kxmgbnzZLAQ4bs%3D&reserved=0>
>  
> <https://groups.google.com/d/msgid/ansible-project/8de61124-119f-4cda-b20d-0af624e589d5n%40googlegroups.com?utm_medium=email&utm_source=footer<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fansible-project%2F8de61124-119f-4cda-b20d-0af624e589d5n%2540googlegroups.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567669500%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=eZRmYS9YWRLYBGS9QCrsvckRYYt%2F4YIN1sGyBaTa53M%3D&reserved=0>>.
>





DISCLAIMER

This email is confidential and subject to important disclaimers and conditions 
in relation to monitoring, viruses, confidentiality and legal privilege full 
details of which can be viewed on our Email Policy at the following link: 
http://www.next.co.uk/Policy/<https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.next.co.uk%2FPolicy%2F&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567669500%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=GSXD5cBmc6AQfkWutv7IJmPvnCsyytbxJAnIyMlCKrc%3D&reserved=0>

Next Holdings Ltd registered in England 35161.  Registered Office Desford Road 
Enderby Leicester LE19 4AT.  Authorised and regulated by the Financial Conduct 
Authority

--
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 [email protected].

To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/220a4181-06ea-4ad9-a8fe-9c5b52b0dfe8n%40googlegroups.com<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fansible-project%2F220a4181-06ea-4ad9-a8fe-9c5b52b0dfe8n%2540googlegroups.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7Cstuart.lowe%40zeninternet.co.uk%7C835ee66a340d46515d2d08da85bca74d%7Cf553766da74d4c29bbe3ae53a28c11d3%7C0%7C0%7C637969342567669500%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=yr%2F7Otrzze5nuAKhyn6EEyPEXYBa2RwwCvZxoEBgrJM%3D&reserved=0>.

---------------
[https://ci6.googleusercontent.com/proxy/rs7FtBaflsrbO80B1d82akSaR8CQ7gnd9iU32ACW-Z4dDD9fdxPnGJ-Q4Auvk2j5sDSesQavF71SczwIeyUDMN7s4s8qEnSImv8gqCE-uLT-a6ceEO-gPvYbIyrWwLA-UthSlwbQOSU6e_d2Icy8jkE=s0-d-e1-ft#https://www.zen.co.uk/resources/images/default-source/image-library/icons/zen-logo_meeting.png]
Stuart Lowe He/Him
Senior Cloud Support Engineer
Zen Internet
Team: 01706 902009
Web: zen.co.uk<http://zen.co.uk>

Proud to be a certified B Corporation

[https://ci3.googleusercontent.com/proxy/Tp_7oR3shSoypgzvqfmmQ8JCpQnI8rcWreR_AauxXaDubSD0qRwO635qDBarfQZ86goCT0uLDzoyyU2Ql99Yts5S5WcVQ7l34fB-iKhNV7BjuJICB97xzVnWXzXDol9gy9wcfGoVOyWETvA3S6cLSzWicCAjNoupfByqB9CdCDPzdVg=s0-d-e1-ft#https://www.zen.co.uk/resources/images/default-source/image-library/banner-images/which-2021/which-logo-2021.png]

This message is private and confidential. If you have received this message in 
error, please notify us and remove it from your system.

Zen Internet Limited may monitor email traffic data to manage billing, to 
handle customer enquiries, and for the prevention and detection of fraud. We 
may also monitor the content of emails sent to and/or from Zen Internet Limited 
for the purposes of security, staff training and to monitor the quality of 
service.
Zen Internet Limited is registered in England and Wales, Sandbrook Park, 
Sandbrook Way, Rochdale, OL11 1RY Company No. 03101568 VAT Reg No. 686 0495 01



DISCLAIMER

This email is confidential and subject to important disclaimers and conditions 
in relation to monitoring, viruses, confidentiality and legal privilege full 
details of which can be viewed on our Email Policy at the following link: 
http://www.next.co.uk/Policy/

Next Holdings Ltd registered in England 35161.  Registered Office Desford Road 
Enderby Leicester LE19 4AT.  Authorised and regulated by the Financial Conduct 
Authority

--
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/4aff4067-c9ac-4d35-9572-f787a54e3e50n%40googlegroups.com<https://groups.google.com/d/msgid/ansible-project/4aff4067-c9ac-4d35-9572-f787a54e3e50n%40googlegroups.com?utm_medium=email&utm_source=footer>.



DISCLAIMER

This email is confidential and subject to important disclaimers and conditions 
in relation to monitoring, viruses, confidentiality and legal privilege full 
details of which can be viewed on our Email Policy at the following link: 
http://www.next.co.uk/Policy/

Next Holdings Ltd registered in England 35161.  Registered Office Desford Road 
Enderby Leicester LE19 4AT.  Authorised and regulated by the Financial Conduct 
Authority

--
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 
[email protected]<mailto:[email protected]>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/b3671a0d-3af7-4141-bfe7-489c8ac8fb12n%40googlegroups.com<https://groups.google.com/d/msgid/ansible-project/b3671a0d-3af7-4141-bfe7-489c8ac8fb12n%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/SYBP282MB35257C2EC2D9D540BB050B1AAD739%40SYBP282MB3525.AUSP282.PROD.OUTLOOK.COM.

Reply via email to