[ansible-project] Re: ansible-pull configuration

2019-06-10 Thread Roman
Hello,

actually my purpose is to configure remote client server from control 
server (both located in AWS cloud) using ansible-pull running on control 
node. I'm stuck with parsing host file when executing ansible-pull. Here is 
the command which I'm running:
*ansible-pull* -U *g...@bitbucket.org:my-repository.git* -C *my_brunch* 
*my_playbook.yml* --inventory-file=*~/hosts*
I'd appreciate a lot if someone could give a clue.

On Wednesday, August 8, 2018 at 9:03:45 AM UTC+3, SUMIT SAHAY wrote:
>
>
> Hi All,
>
> I am trying to setup the ansible pull based on my vm server.
>
> Is there any step-wise documentation for this?
>
>
> Regards
> Sumit Sahay
> 7044112109
>

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/8b92f88e-403e-4805-bd24-cdd34be4d775%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: ansible-pull configuration

2019-06-07 Thread tendo.li...@gmail.com
That might help you: 
https://rbgeek.wordpress.com/2016/05/15/autoscaling-with-aws-instances-using-ansible-pull/

On Thursday, June 6, 2019 at 7:48:04 PM UTC+5, Roman wrote:
>
> Hi SUMIT SAHAY,
>
> kindly share with the way how you set up hosts file in terms of defining 
> remote hosts
>
> On Wednesday, August 8, 2018 at 9:03:45 AM UTC+3, SUMIT SAHAY wrote:
>>
>>
>> Hi All,
>>
>> I am trying to setup the ansible pull based on my vm server.
>>
>> Is there any step-wise documentation for this?
>>
>>
>> Regards
>> Sumit Sahay
>> 7044112109
>>
>

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/dd153082-527b-4492-96c3-45a5e7c65153%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: ansible-pull configuration

2019-06-06 Thread Roman
Hi SUMIT SAHAY,

kindly share with the way how you set up hosts file in terms of defining 
remote hosts

On Wednesday, August 8, 2018 at 9:03:45 AM UTC+3, SUMIT SAHAY wrote:
>
>
> Hi All,
>
> I am trying to setup the ansible pull based on my vm server.
>
> Is there any step-wise documentation for this?
>
>
> Regards
> Sumit Sahay
> 7044112109
>

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/449397a1-dd9f-4bac-8396-d7af21a37f52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: ansible-pull configuration

2018-08-28 Thread SUMIT SAHAY
Hi Pshem,

Thanks for your reply,

I managed to run the ansible pull for remote hosts below is the command I 
used for ansible pull,

ansible-pull -U repo_url --inventory=hosts -k HelloWorld.yml --limit 
remote_server

Thanks Pshem for your support.

Regards
Sumit Sahay
7044112109


On Wednesday, 29 August 2018 11:07:22 UTC+5:30, Pshem Kowalczyk wrote:
>
> Hi,
>
> I have never attempted to use ansible in pull mode on anything than the 
> localhost. I have ran the same playbook on multiple nodes at once but they 
> were not 'in-sync' - each one of them run tasks independently. 
>
> If you need to run something on multiple machines I suggest you 'nest' the 
> call to a standalone ansible (using command). If you could share your 
> use-case than perhaps someone can offer a better solution.
>
> kind regards
> Pshem
>
>
> On Wed, 29 Aug 2018 at 17:30 SUMIT SAHAY  > wrote:
>
>> Thanks Pshem,
>>
>> Ansible pull is working for me now, able to run the ansible pull for 
>> localhost.
>>
>> I have one query, I want to run the ansible pull for 100nodes and in that 
>> case I am using below command,
>>
>> ansible-pull -U repo_url --inventory=hosts -k HelloWorld.yml
>>
>> But it is not working for multiple nodes for localhost it is working fine.
>>
>> I want to resolve this issue, could you please help me out on this.
>>
>> Looking forward for your reply.
>>
>> Regards
>> Sumit Sahay
>> 7044112109
>>
>>

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/d803da6c-98fe-441f-88ff-0020ba17038a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: ansible-pull configuration

2018-08-28 Thread Pshem Kowalczyk
Hi,

I have never attempted to use ansible in pull mode on anything than the
localhost. I have ran the same playbook on multiple nodes at once but they
were not 'in-sync' - each one of them run tasks independently.

If you need to run something on multiple machines I suggest you 'nest' the
call to a standalone ansible (using command). If you could share your
use-case than perhaps someone can offer a better solution.

kind regards
Pshem


On Wed, 29 Aug 2018 at 17:30 SUMIT SAHAY  wrote:

> Thanks Pshem,
>
> Ansible pull is working for me now, able to run the ansible pull for
> localhost.
>
> I have one query, I want to run the ansible pull for 100nodes and in that
> case I am using below command,
>
> ansible-pull -U repo_url --inventory=hosts -k HelloWorld.yml
>
> But it is not working for multiple nodes for localhost it is working fine.
>
> I want to resolve this issue, could you please help me out on this.
>
> Looking forward for your reply.
>
> Regards
> Sumit Sahay
> 7044112109 <(704)%20411-2109>
>
>

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAEaZiRXr-7FaM7MUNyN6JiAEV3OiybWXBORLktNuKCgLCsLhBQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: ansible-pull configuration

2018-08-28 Thread SUMIT SAHAY
Thanks Pshem,

Ansible pull is working for me now, able to run the ansible pull for 
localhost.

I have one query, I want to run the ansible pull for 100nodes and in that 
case I am using below command,

ansible-pull -U repo_url --inventory=hosts -k HelloWorld.yml

But it is not working for multiple nodes for localhost it is working fine.

I want to resolve this issue, could you please help me out on this.

Looking forward for your reply.

Regards
Sumit Sahay
7044112109

On Thursday, 16 August 2018 15:56:29 UTC+5:30, Pshem Kowalczyk wrote:
>
> Hi,
>
> That's correct, in pull mode ansible modifies and sets things on the 
> machine on which it runs. The easiest way of providing inventory in this 
> case is via command line:
>
> -i $(hostname), 
>
> Please note the comma at the end.
>
> kind regards
> Pshem
>
>
> On Wed, 15 Aug 2018 at 02:55 SUMIT SAHAY  > wrote:
>
>> Thanks for your reply Jonathan.
>> localhost : from where we are triggering command.
>> This is what you want to say?
>>
>> Looking forward for your reply.
>>
>> Regards
>> Sumit Sahay
>> 07044112109
>>
>> On Tue, Aug 14, 2018, 7:44 PM Jonathan Lozada De La Matta <
>> jloz...@redhat.com > wrote:
>>
>>> usually ansible-pull its used on localhost and not other hosts. If you 
>>> are trying to do other host then use regular ansible. Ansible-pull is a 
>>> different use case.
>>>
>>> On Tue, Aug 14, 2018 at 8:26 AM SUMIT SAHAY >> > wrote:
>>>
 Thanks Jonathan, for your reply.

 No, I am not using localhost, I want to run my playbook on ubuntu host 
 which I set up in my host file, and the host file is located in 
 /home/test/sumit/

 How to run this so that it will pick up the host and execute on ubuntu 
 remote host.

 Looking forward for your reply.

 Thanks & Regards
 Sumit Sahay
 7044112109


 On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
 jloz...@redhat.com > wrote:

> what hosts are on your playbook? is it localhost?
>
> On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY  > wrote:
>
>> Thanks Balz, for your reply.
>>
>> Could you help me with the command for ansible pull, I installed git 
>> and repository and I committed the ansible playbook there now I want to 
>> run 
>> this from my localhost server following command I am using but getting 
>> error,
>>
>> ansible-pull -U https://repourl.com/git/user_name/git_location -k -i 
>> /home/test/hosts playbook.yml
>>
>> getting error saying skipping the hosts.
>>
>> Could you please navigate me to the correct command.
>>
>> Looking forward for your reply.
>>
>> Regards
>> Sumit Sahay
>> 7044112109
>>
>> On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch 
>> wrote:
>>>
>>> Hi Sumit
>>>
>>> We're using a wrapper around ansible-pull. We use it mainly for 
>>> clients but we've a step-by-step guide you might find helpful:
>>> https://github.com/ANTS-Framework/ants
>>>
>>> Regards
>>> Balz
>>>
>>> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:


 Hi All,

 I am trying to setup the ansible pull based on my vm server.

 Is there any step-wise documentation for this?


 Regards
 Sumit Sahay
 7044112109

>>>
 -- 
>> 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-proje...@googlegroups.com .
>> To post to this group, send email to ansible...@googlegroups.com 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/ansible-project/ceb0cea7-7919-45f0-8288-e7ac8341cb57%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> -- 
>
> Jonathan lozada de la matta
>
> AUTOMATION CONSULTANT - AUTOMATION PRACTICE
>
> Red Hat Consulting Services 
>
> jloz...@redhat.com 
>
>
>  
>
> -- 
> You received this message because you are subscribed to a topic in the 
> Google Groups "Ansible Project" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/ansible-project/W9jYFiNta_A/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to 
> ansible-proje...@googlegroups.com .
> To post to this group, send email to ansible...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/ansible-project/CA

Re: [ansible-project] Re: ansible-pull configuration

2018-08-21 Thread SUMIT SAHAY

Hi Pshem,

Thanks for your reply.
I am getting following error, and not able to fix the issue,

"msg": "Failed to download remote objects and refs:  Ubuntu 16.04.3 
LTS\nPermission denied (publickey,password,keyboard-interactive).\r\nfatal: 
Could not read from remote repository.\n\nPlease make sure you have the 
correct access rights\nand the repository exists.\n"

Looking forward for your reply.

Regards
Sumit Sahay
7044112109

On Friday, 17 August 2018 03:15:41 UTC+5:30, Pshem Kowalczyk wrote:
>
> There are two things here:
>
> 1. If you're using SSH the public key of the remote server must be added 
> to 'known_hosts', for example like this:
>
> ssh-keyscan -t rsa github.com | sed "s/^[^ ]* //" >> ~/.ssh/known_hosts
>
> (alternatively you can get ansible to just accept whatever key is offered 
> with --accept-host-key)
>
> 2. Secondly you have to specify the private key associated with the repo 
> with --private-key
>
> kind regards
> Pshem
>
>
> On Thu, 16 Aug 2018 at 22:36 SUMIT SAHAY  > wrote:
>
>> Thanks Pshem for your reply.
>>
>> ansible-pull -U [git_url] -k playbook.yml --limit localhost
>>
>> I am using this command to run the ansible pull, while doing this I am 
>> getting one error, unable to resolve the error.
>>
>>
>> "msg": "Failed to download remote objects and refs:  Host key 
>> verification failed.\r\nfatal: Could not read from remote 
>> repository.\n\nPlease make sure you have the correct access rights\nand the 
>> repository exists.\n"
>>
>> Can you please help me out on this
>>
>>
>> Looking forward for your reply
>>
>>
>> Thanks & Regards
>> Sumit Sahay
>> 07044112109
>>
>> On Thu, Aug 16, 2018 at 3:56 PM, Pshem Kowalczyk > > wrote:
>>
>>> Hi,
>>>
>>> That's correct, in pull mode ansible modifies and sets things on the 
>>> machine on which it runs. The easiest way of providing inventory in this 
>>> case is via command line:
>>>
>>> -i $(hostname), 
>>>
>>> Please note the comma at the end.
>>>
>>> kind regards
>>> Pshem
>>>
>>>
>>> On Wed, 15 Aug 2018 at 02:55 SUMIT SAHAY >> > wrote:
>>>
 Thanks for your reply Jonathan.
 localhost : from where we are triggering command.
 This is what you want to say?

 Looking forward for your reply.

 Regards
 Sumit Sahay
 07044112109

 On Tue, Aug 14, 2018, 7:44 PM Jonathan Lozada De La Matta <
 jloz...@redhat.com > wrote:

> usually ansible-pull its used on localhost and not other hosts. If you 
> are trying to do other host then use regular ansible. Ansible-pull is a 
> different use case.
>
> On Tue, Aug 14, 2018 at 8:26 AM SUMIT SAHAY  > wrote:
>
>> Thanks Jonathan, for your reply.
>>
>> No, I am not using localhost, I want to run my playbook on ubuntu 
>> host which I set up in my host file, and the host file is located in 
>> /home/test/sumit/
>>
>> How to run this so that it will pick up the host and execute on 
>> ubuntu remote host.
>>
>> Looking forward for your reply.
>>
>> Thanks & Regards
>> Sumit Sahay
>> 7044112109
>>
>>
>> On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
>> jloz...@redhat.com > wrote:
>>
>>> what hosts are on your playbook? is it localhost?
>>>
>>> On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY >> > wrote:
>>>
 Thanks Balz, for your reply.

 Could you help me with the command for ansible pull, I installed 
 git and repository and I committed the ansible playbook there now I 
 want to 
 run this from my localhost server following command I am using but 
 getting 
 error,

 ansible-pull -U https://repourl.com/git/user_name/git_location -k 
 -i /home/test/hosts playbook.yml

 getting error saying skipping the hosts.

 Could you please navigate me to the correct command.

 Looking forward for your reply.

 Regards
 Sumit Sahay
 7044112109

 On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch 
 wrote:
>
> Hi Sumit
>
> We're using a wrapper around ansible-pull. We use it mainly for 
> clients but we've a step-by-step guide you might find helpful:
> https://github.com/ANTS-Framework/ants
>
> Regards
> Balz
>
> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>>
>>
>> Hi All,
>>
>> I am trying to setup the ansible pull based on my vm server.
>>
>> Is there any step-wise documentation for this?
>>
>>
>> Regards
>> Sumit Sahay
>> 7044112109
>>
>
>> -- 
 You received this message because you are subscribed to the Google 
 Groups "Ansible Project" group.
 To unsubscribe from this group and st

Re: [ansible-project] Re: ansible-pull configuration

2018-08-16 Thread Pshem Kowalczyk
There are two things here:

1. If you're using SSH the public key of the remote server must be added to
'known_hosts', for example like this:

ssh-keyscan -t rsa github.com | sed "s/^[^ ]* //" >> ~/.ssh/known_hosts

(alternatively you can get ansible to just accept whatever key is offered
with --accept-host-key)

2. Secondly you have to specify the private key associated with the repo
with --private-key

kind regards
Pshem


On Thu, 16 Aug 2018 at 22:36 SUMIT SAHAY  wrote:

> Thanks Pshem for your reply.
>
> ansible-pull -U [git_url] -k playbook.yml --limit localhost
>
> I am using this command to run the ansible pull, while doing this I am
> getting one error, unable to resolve the error.
>
>
> "msg": "Failed to download remote objects and refs:  Host key verification
> failed.\r\nfatal: Could not read from remote repository.\n\nPlease make
> sure you have the correct access rights\nand the repository exists.\n"
>
> Can you please help me out on this
>
>
> Looking forward for your reply
>
>
> Thanks & Regards
> Sumit Sahay
> 07044112109
>
> On Thu, Aug 16, 2018 at 3:56 PM, Pshem Kowalczyk 
> wrote:
>
>> Hi,
>>
>> That's correct, in pull mode ansible modifies and sets things on the
>> machine on which it runs. The easiest way of providing inventory in this
>> case is via command line:
>>
>> -i $(hostname),
>>
>> Please note the comma at the end.
>>
>> kind regards
>> Pshem
>>
>>
>> On Wed, 15 Aug 2018 at 02:55 SUMIT SAHAY 
>> wrote:
>>
>>> Thanks for your reply Jonathan.
>>> localhost : from where we are triggering command.
>>> This is what you want to say?
>>>
>>> Looking forward for your reply.
>>>
>>> Regards
>>> Sumit Sahay
>>> 07044112109
>>>
>>> On Tue, Aug 14, 2018, 7:44 PM Jonathan Lozada De La Matta <
>>> jloza...@redhat.com> wrote:
>>>
 usually ansible-pull its used on localhost and not other hosts. If you
 are trying to do other host then use regular ansible. Ansible-pull is a
 different use case.

 On Tue, Aug 14, 2018 at 8:26 AM SUMIT SAHAY 
 wrote:

> Thanks Jonathan, for your reply.
>
> No, I am not using localhost, I want to run my playbook on ubuntu host
> which I set up in my host file, and the host file is located in
> /home/test/sumit/
>
> How to run this so that it will pick up the host and execute on ubuntu
> remote host.
>
> Looking forward for your reply.
>
> Thanks & Regards
> Sumit Sahay
> 7044112109 <(704)%20411-2109>
>
>
> On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
> jloza...@redhat.com> wrote:
>
>> what hosts are on your playbook? is it localhost?
>>
>> On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY 
>> wrote:
>>
>>> Thanks Balz, for your reply.
>>>
>>> Could you help me with the command for ansible pull, I installed git
>>> and repository and I committed the ansible playbook there now I want to 
>>> run
>>> this from my localhost server following command I am using but getting
>>> error,
>>>
>>> ansible-pull -U https://repourl.com/git/user_name/git_location -k
>>> -i /home/test/hosts playbook.yml
>>>
>>> getting error saying skipping the hosts.
>>>
>>> Could you please navigate me to the correct command.
>>>
>>> Looking forward for your reply.
>>>
>>> Regards
>>> Sumit Sahay
>>> 7044112109 <(704)%20411-2109>
>>>
>>> On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch
>>> wrote:

 Hi Sumit

 We're using a wrapper around ansible-pull. We use it mainly for
 clients but we've a step-by-step guide you might find helpful:
 https://github.com/ANTS-Framework/ants

 Regards
 Balz

 Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>
>
> Hi All,
>
> I am trying to setup the ansible pull based on my vm server.
>
> Is there any step-wise documentation for this?
>
>
> Regards
> Sumit Sahay
> 7044112109 <(704)%20411-2109>
>

> --
>>> 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 post to this group, send email to
>>> ansible-project@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/ansible-project/ceb0cea7-7919-45f0-8288-e7ac8341cb57%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>>
>> Jonathan lozada de la matta
>>
>> A

Re: [ansible-project] Re: ansible-pull configuration

2018-08-16 Thread SUMIT SAHAY
Thanks Pshem for your reply.

ansible-pull -U [git_url] -k playbook.yml --limit localhost

I am using this command to run the ansible pull, while doing this I am
getting one error, unable to resolve the error.


"msg": "Failed to download remote objects and refs:  Host key verification
failed.\r\nfatal: Could not read from remote repository.\n\nPlease make
sure you have the correct access rights\nand the repository exists.\n"

Can you please help me out on this


Looking forward for your reply


Thanks & Regards
Sumit Sahay
07044112109

On Thu, Aug 16, 2018 at 3:56 PM, Pshem Kowalczyk  wrote:

> Hi,
>
> That's correct, in pull mode ansible modifies and sets things on the
> machine on which it runs. The easiest way of providing inventory in this
> case is via command line:
>
> -i $(hostname),
>
> Please note the comma at the end.
>
> kind regards
> Pshem
>
>
> On Wed, 15 Aug 2018 at 02:55 SUMIT SAHAY  wrote:
>
>> Thanks for your reply Jonathan.
>> localhost : from where we are triggering command.
>> This is what you want to say?
>>
>> Looking forward for your reply.
>>
>> Regards
>> Sumit Sahay
>> 07044112109
>>
>> On Tue, Aug 14, 2018, 7:44 PM Jonathan Lozada De La Matta <
>> jloza...@redhat.com> wrote:
>>
>>> usually ansible-pull its used on localhost and not other hosts. If you
>>> are trying to do other host then use regular ansible. Ansible-pull is a
>>> different use case.
>>>
>>> On Tue, Aug 14, 2018 at 8:26 AM SUMIT SAHAY 
>>> wrote:
>>>
 Thanks Jonathan, for your reply.

 No, I am not using localhost, I want to run my playbook on ubuntu host
 which I set up in my host file, and the host file is located in
 /home/test/sumit/

 How to run this so that it will pick up the host and execute on ubuntu
 remote host.

 Looking forward for your reply.

 Thanks & Regards
 Sumit Sahay
 7044112109 <(704)%20411-2109>


 On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
 jloza...@redhat.com> wrote:

> what hosts are on your playbook? is it localhost?
>
> On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY 
> wrote:
>
>> Thanks Balz, for your reply.
>>
>> Could you help me with the command for ansible pull, I installed git
>> and repository and I committed the ansible playbook there now I want to 
>> run
>> this from my localhost server following command I am using but getting
>> error,
>>
>> ansible-pull -U https://repourl.com/git/user_name/git_location -k -i
>> /home/test/hosts playbook.yml
>>
>> getting error saying skipping the hosts.
>>
>> Could you please navigate me to the correct command.
>>
>> Looking forward for your reply.
>>
>> Regards
>> Sumit Sahay
>> 7044112109 <(704)%20411-2109>
>>
>> On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch
>> wrote:
>>>
>>> Hi Sumit
>>>
>>> We're using a wrapper around ansible-pull. We use it mainly for
>>> clients but we've a step-by-step guide you might find helpful:
>>> https://github.com/ANTS-Framework/ants
>>>
>>> Regards
>>> Balz
>>>
>>> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:


 Hi All,

 I am trying to setup the ansible pull based on my vm server.

 Is there any step-wise documentation for this?


 Regards
 Sumit Sahay
 7044112109 <(704)%20411-2109>

>>>
 --
>> 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 post to this group, send email to ansible-project@googlegroups.com
>> .
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/ansible-project/ceb0cea7-7919-45f0-8288-
>> e7ac8341cb57%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
>
> Jonathan lozada de la matta
>
> AUTOMATION CONSULTANT - AUTOMATION PRACTICE
>
> Red Hat Consulting Services 
>
> jloza...@redhat.com
>
>
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Ansible Project" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/ansible-project/W9jYFiNta_A/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> ansible-project+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To vie

Re: [ansible-project] Re: ansible-pull configuration

2018-08-16 Thread Pshem Kowalczyk
Hi,

That's correct, in pull mode ansible modifies and sets things on the
machine on which it runs. The easiest way of providing inventory in this
case is via command line:

-i $(hostname),

Please note the comma at the end.

kind regards
Pshem


On Wed, 15 Aug 2018 at 02:55 SUMIT SAHAY  wrote:

> Thanks for your reply Jonathan.
> localhost : from where we are triggering command.
> This is what you want to say?
>
> Looking forward for your reply.
>
> Regards
> Sumit Sahay
> 07044112109
>
> On Tue, Aug 14, 2018, 7:44 PM Jonathan Lozada De La Matta <
> jloza...@redhat.com> wrote:
>
>> usually ansible-pull its used on localhost and not other hosts. If you
>> are trying to do other host then use regular ansible. Ansible-pull is a
>> different use case.
>>
>> On Tue, Aug 14, 2018 at 8:26 AM SUMIT SAHAY 
>> wrote:
>>
>>> Thanks Jonathan, for your reply.
>>>
>>> No, I am not using localhost, I want to run my playbook on ubuntu host
>>> which I set up in my host file, and the host file is located in
>>> /home/test/sumit/
>>>
>>> How to run this so that it will pick up the host and execute on ubuntu
>>> remote host.
>>>
>>> Looking forward for your reply.
>>>
>>> Thanks & Regards
>>> Sumit Sahay
>>> 7044112109 <(704)%20411-2109>
>>>
>>>
>>> On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
>>> jloza...@redhat.com> wrote:
>>>
 what hosts are on your playbook? is it localhost?

 On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY 
 wrote:

> Thanks Balz, for your reply.
>
> Could you help me with the command for ansible pull, I installed git
> and repository and I committed the ansible playbook there now I want to 
> run
> this from my localhost server following command I am using but getting
> error,
>
> ansible-pull -U https://repourl.com/git/user_name/git_location -k -i
> /home/test/hosts playbook.yml
>
> getting error saying skipping the hosts.
>
> Could you please navigate me to the correct command.
>
> Looking forward for your reply.
>
> Regards
> Sumit Sahay
> 7044112109 <(704)%20411-2109>
>
> On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch
> wrote:
>>
>> Hi Sumit
>>
>> We're using a wrapper around ansible-pull. We use it mainly for
>> clients but we've a step-by-step guide you might find helpful:
>> https://github.com/ANTS-Framework/ants
>>
>> Regards
>> Balz
>>
>> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>>>
>>>
>>> Hi All,
>>>
>>> I am trying to setup the ansible pull based on my vm server.
>>>
>>> Is there any step-wise documentation for this?
>>>
>>>
>>> Regards
>>> Sumit Sahay
>>> 7044112109 <(704)%20411-2109>
>>>
>>
>>> --
> 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 post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/ceb0cea7-7919-45f0-8288-e7ac8341cb57%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --

 Jonathan lozada de la matta

 AUTOMATION CONSULTANT - AUTOMATION PRACTICE

 Red Hat Consulting Services 

 jloza...@redhat.com




 --
 You received this message because you are subscribed to a topic in the
 Google Groups "Ansible Project" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/ansible-project/W9jYFiNta_A/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 ansible-project+unsubscr...@googlegroups.com.
 To post to this group, send email to ansible-project@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/ansible-project/CAFYJA%2BLARn5QZ8L8SqNO%2BSE-iDO16AnfMEcFcqqnrx%2Be6r4WRQ%40mail.gmail.com
 
 .

 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>>
>>> --
>>> Sumit Sahay
>>> 9353031613
>>>
>>> --
>>> 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 post to this group, send email to ansi

Re: [ansible-project] Re: ansible-pull configuration

2018-08-14 Thread SUMIT SAHAY
Thanks for your reply Jonathan.
localhost : from where we are triggering command.
This is what you want to say?

Looking forward for your reply.

Regards
Sumit Sahay
07044112109

On Tue, Aug 14, 2018, 7:44 PM Jonathan Lozada De La Matta <
jloza...@redhat.com> wrote:

> usually ansible-pull its used on localhost and not other hosts. If you are
> trying to do other host then use regular ansible. Ansible-pull is a
> different use case.
>
> On Tue, Aug 14, 2018 at 8:26 AM SUMIT SAHAY 
> wrote:
>
>> Thanks Jonathan, for your reply.
>>
>> No, I am not using localhost, I want to run my playbook on ubuntu host
>> which I set up in my host file, and the host file is located in
>> /home/test/sumit/
>>
>> How to run this so that it will pick up the host and execute on ubuntu
>> remote host.
>>
>> Looking forward for your reply.
>>
>> Thanks & Regards
>> Sumit Sahay
>> 7044112109
>>
>>
>> On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
>> jloza...@redhat.com> wrote:
>>
>>> what hosts are on your playbook? is it localhost?
>>>
>>> On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY 
>>> wrote:
>>>
 Thanks Balz, for your reply.

 Could you help me with the command for ansible pull, I installed git
 and repository and I committed the ansible playbook there now I want to run
 this from my localhost server following command I am using but getting
 error,

 ansible-pull -U https://repourl.com/git/user_name/git_location -k -i
 /home/test/hosts playbook.yml

 getting error saying skipping the hosts.

 Could you please navigate me to the correct command.

 Looking forward for your reply.

 Regards
 Sumit Sahay
 7044112109

 On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch
 wrote:
>
> Hi Sumit
>
> We're using a wrapper around ansible-pull. We use it mainly for
> clients but we've a step-by-step guide you might find helpful:
> https://github.com/ANTS-Framework/ants
>
> Regards
> Balz
>
> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>>
>>
>> Hi All,
>>
>> I am trying to setup the ansible pull based on my vm server.
>>
>> Is there any step-wise documentation for this?
>>
>>
>> Regards
>> Sumit Sahay
>> 7044112109
>>
>
>> --
 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 post to this group, send email to ansible-project@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/ansible-project/ceb0cea7-7919-45f0-8288-e7ac8341cb57%40googlegroups.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>>>
>>> Jonathan lozada de la matta
>>>
>>> AUTOMATION CONSULTANT - AUTOMATION PRACTICE
>>>
>>> Red Hat Consulting Services 
>>>
>>> jloza...@redhat.com
>>>
>>>
>>>
>>>
>>> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "Ansible Project" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/ansible-project/W9jYFiNta_A/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to
>>> ansible-project+unsubscr...@googlegroups.com.
>>> To post to this group, send email to ansible-project@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/ansible-project/CAFYJA%2BLARn5QZ8L8SqNO%2BSE-iDO16AnfMEcFcqqnrx%2Be6r4WRQ%40mail.gmail.com
>>> 
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Sumit Sahay
>> 9353031613
>>
>> --
>> 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 post to this group, send email to ansible-project@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/ansible-project/CAA1rwCNPCHF6E51s44neoqPDVXit8x53bwQfyngCy5SF3fq8hg%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
>
> Jonathan lozada de la matta
>
> AUTOMATION CONSULTANT - AUTOMATION PRACTICE
>
> 

Re: [ansible-project] Re: ansible-pull configuration

2018-08-14 Thread Jonathan Lozada De La Matta
usually ansible-pull its used on localhost and not other hosts. If you are
trying to do other host then use regular ansible. Ansible-pull is a
different use case.

On Tue, Aug 14, 2018 at 8:26 AM SUMIT SAHAY 
wrote:

> Thanks Jonathan, for your reply.
>
> No, I am not using localhost, I want to run my playbook on ubuntu host
> which I set up in my host file, and the host file is located in
> /home/test/sumit/
>
> How to run this so that it will pick up the host and execute on ubuntu
> remote host.
>
> Looking forward for your reply.
>
> Thanks & Regards
> Sumit Sahay
> 7044112109
>
>
> On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
> jloza...@redhat.com> wrote:
>
>> what hosts are on your playbook? is it localhost?
>>
>> On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY 
>> wrote:
>>
>>> Thanks Balz, for your reply.
>>>
>>> Could you help me with the command for ansible pull, I installed git and
>>> repository and I committed the ansible playbook there now I want to run
>>> this from my localhost server following command I am using but getting
>>> error,
>>>
>>> ansible-pull -U https://repourl.com/git/user_name/git_location -k -i
>>> /home/test/hosts playbook.yml
>>>
>>> getting error saying skipping the hosts.
>>>
>>> Could you please navigate me to the correct command.
>>>
>>> Looking forward for your reply.
>>>
>>> Regards
>>> Sumit Sahay
>>> 7044112109
>>>
>>> On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch
>>> wrote:

 Hi Sumit

 We're using a wrapper around ansible-pull. We use it mainly for clients
 but we've a step-by-step guide you might find helpful:
 https://github.com/ANTS-Framework/ants

 Regards
 Balz

 Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>
>
> Hi All,
>
> I am trying to setup the ansible pull based on my vm server.
>
> Is there any step-wise documentation for this?
>
>
> Regards
> Sumit Sahay
> 7044112109
>

> --
>>> 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 post to this group, send email to ansible-project@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/ansible-project/ceb0cea7-7919-45f0-8288-e7ac8341cb57%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>>
>> Jonathan lozada de la matta
>>
>> AUTOMATION CONSULTANT - AUTOMATION PRACTICE
>>
>> Red Hat Consulting Services 
>>
>> jloza...@redhat.com
>>
>>
>>
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Ansible Project" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/ansible-project/W9jYFiNta_A/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> ansible-project+unsubscr...@googlegroups.com.
>> To post to this group, send email to ansible-project@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/ansible-project/CAFYJA%2BLARn5QZ8L8SqNO%2BSE-iDO16AnfMEcFcqqnrx%2Be6r4WRQ%40mail.gmail.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Sumit Sahay
> 9353031613
>
> --
> 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 post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CAA1rwCNPCHF6E51s44neoqPDVXit8x53bwQfyngCy5SF3fq8hg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
-- 

Jonathan lozada de la matta

AUTOMATION CONSULTANT - AUTOMATION PRACTICE

Red Hat Consulting Services 

jloza...@redhat.com

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit

Re: [ansible-project] Re: ansible-pull configuration

2018-08-14 Thread SUMIT SAHAY
Thanks Jonathan, for your reply.

No, I am not using localhost, I want to run my playbook on ubuntu host
which I set up in my host file, and the host file is located in
/home/test/sumit/

How to run this so that it will pick up the host and execute on ubuntu
remote host.

Looking forward for your reply.

Thanks & Regards
Sumit Sahay
7044112109


On Tue, Aug 14, 2018 at 5:17 PM, Jonathan Lozada De La Matta <
jloza...@redhat.com> wrote:

> what hosts are on your playbook? is it localhost?
>
> On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY 
> wrote:
>
>> Thanks Balz, for your reply.
>>
>> Could you help me with the command for ansible pull, I installed git and
>> repository and I committed the ansible playbook there now I want to run
>> this from my localhost server following command I am using but getting
>> error,
>>
>> ansible-pull -U https://repourl.com/git/user_name/git_location -k -i
>> /home/test/hosts playbook.yml
>>
>> getting error saying skipping the hosts.
>>
>> Could you please navigate me to the correct command.
>>
>> Looking forward for your reply.
>>
>> Regards
>> Sumit Sahay
>> 7044112109
>>
>> On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch
>> wrote:
>>>
>>> Hi Sumit
>>>
>>> We're using a wrapper around ansible-pull. We use it mainly for clients
>>> but we've a step-by-step guide you might find helpful:
>>> https://github.com/ANTS-Framework/ants
>>>
>>> Regards
>>> Balz
>>>
>>> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:


 Hi All,

 I am trying to setup the ansible pull based on my vm server.

 Is there any step-wise documentation for this?


 Regards
 Sumit Sahay
 7044112109

>>>
 --
>> 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 post to this group, send email to ansible-project@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/ansible-project/ceb0cea7-7919-45f0-8288-
>> e7ac8341cb57%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
>
> Jonathan lozada de la matta
>
> AUTOMATION CONSULTANT - AUTOMATION PRACTICE
>
> Red Hat Consulting Services 
>
> jloza...@redhat.com
>
>
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Ansible Project" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/ansible-project/W9jYFiNta_A/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> ansible-project+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/ansible-project/CAFYJA%2BLARn5QZ8L8SqNO%2BSE-
> iDO16AnfMEcFcqqnrx%2Be6r4WRQ%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Sumit Sahay
9353031613

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAA1rwCNPCHF6E51s44neoqPDVXit8x53bwQfyngCy5SF3fq8hg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: ansible-pull configuration

2018-08-14 Thread Jonathan Lozada De La Matta
what hosts are on your playbook? is it localhost?

On Tue, Aug 14, 2018 at 3:07 AM SUMIT SAHAY 
wrote:

> Thanks Balz, for your reply.
>
> Could you help me with the command for ansible pull, I installed git and
> repository and I committed the ansible playbook there now I want to run
> this from my localhost server following command I am using but getting
> error,
>
> ansible-pull -U https://repourl.com/git/user_name/git_location -k -i
> /home/test/hosts playbook.yml
>
> getting error saying skipping the hosts.
>
> Could you please navigate me to the correct command.
>
> Looking forward for your reply.
>
> Regards
> Sumit Sahay
> 7044112109
>
> On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch wrote:
>>
>> Hi Sumit
>>
>> We're using a wrapper around ansible-pull. We use it mainly for clients
>> but we've a step-by-step guide you might find helpful:
>> https://github.com/ANTS-Framework/ants
>>
>> Regards
>> Balz
>>
>> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>>>
>>>
>>> Hi All,
>>>
>>> I am trying to setup the ansible pull based on my vm server.
>>>
>>> Is there any step-wise documentation for this?
>>>
>>>
>>> Regards
>>> Sumit Sahay
>>> 7044112109
>>>
>>
>>> --
> 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 post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/ceb0cea7-7919-45f0-8288-e7ac8341cb57%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
-- 

Jonathan lozada de la matta

AUTOMATION CONSULTANT - AUTOMATION PRACTICE

Red Hat Consulting Services 

jloza...@redhat.com

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFYJA%2BLARn5QZ8L8SqNO%2BSE-iDO16AnfMEcFcqqnrx%2Be6r4WRQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: ansible-pull configuration

2018-08-14 Thread SUMIT SAHAY
Thanks Balz, for your reply.

Could you help me with the command for ansible pull, I installed git and 
repository and I committed the ansible playbook there now I want to run 
this from my localhost server following command I am using but getting 
error,

ansible-pull -U https://repourl.com/git/user_name/git_location -k -i 
/home/test/hosts playbook.yml

getting error saying skipping the hosts.

Could you please navigate me to the correct command.

Looking forward for your reply.

Regards
Sumit Sahay
7044112109

On Wednesday, 8 August 2018 22:43:53 UTC+5:30, balz.as...@unibas.ch wrote:
>
> Hi Sumit
>
> We're using a wrapper around ansible-pull. We use it mainly for clients 
> but we've a step-by-step guide you might find helpful:
> https://github.com/ANTS-Framework/ants
>
> Regards
> Balz
>
> Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>>
>>
>> Hi All,
>>
>> I am trying to setup the ansible pull based on my vm server.
>>
>> Is there any step-wise documentation for this?
>>
>>
>> Regards
>> Sumit Sahay
>> 7044112109
>>
>

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/ceb0cea7-7919-45f0-8288-e7ac8341cb57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: ansible-pull configuration

2018-08-08 Thread Balz . aschwanden
Hi Sumit

We're using a wrapper around ansible-pull. We use it mainly for clients but 
we've a step-by-step guide you might find helpful:
https://github.com/ANTS-Framework/ants

Regards
Balz

Am Mittwoch, 8. August 2018 08:03:45 UTC+2 schrieb SUMIT SAHAY:
>
>
> Hi All,
>
> I am trying to setup the ansible pull based on my vm server.
>
> Is there any step-wise documentation for this?
>
>
> Regards
> Sumit Sahay
> 7044112109
>

-- 
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 post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/4960b418-263c-4a5d-a188-b5bdc30f5a64%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.