[ansible-project] Sprints during PyCon US 2019

2019-05-01 Thread Samuel Doran
We will be hosting Ansible sprints during PyCon US 2019 in Cleveland, OH May 6-7. Sprints are free to attend for anyone, even if you are not attending the conference itself. We would love to see you there if you are attending PyCon or are in the Cleveland area. Several Ansible Core team members

Re: [ansible-project] Ansible Replacing the existing Jar files with new Jar files with same file name is not performing any action

2019-05-01 Thread chandrasekhar Mallishetty
Thanks for info... On Thu, May 2, 2019 at 7:34 AM James Cassell wrote: > Please stop the spam. Your message came thru the first time. Also, please > don't spam individual members of the list with the same question you sent > to the list. > > Thanks. > > > R, > James Cassell > > > On Wed, May

[ansible-project] print free space for mount

2019-05-01 Thread Nicholas Britton
I am trying to print the free space for a mount that an application needs to have x free on. Once i can do that i would look at adding actions based on that, but i would also like to the user running the play to know if there is an issue or not. Here is what i have so far, and i cant see

[ansible-project] How to use vars to work with to_datetime

2019-05-01 Thread dan
It's hard without the actual playbook, but I think you need to use 'current.stdout' inserted of just 'current' in that last task. -- 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

Re: [ansible-project] Ansible Replacing the existing Jar files with new Jar files with same file name is not performing any action

2019-05-01 Thread James Cassell
Please stop the spam. Your message came thru the first time. Also, please don't spam individual members of the list with the same question you sent to the list. Thanks. R, James Cassell On Wed, May 1, 2019, at 9:33 PM, chandrasekhar Mallishetty wrote: > > > On Thursday, May 2, 2019 at

[ansible-project] Ansible Replacing the existing Jar files with new Jar files with same file name is not performing any action

2019-05-01 Thread chandrasekhar Mallishetty
On Thursday, May 2, 2019 at 1:52:26 AM UTC+5:30, chandrasekhar Mallishetty wrote: > > Dear All. > > Need your help we are in the process of Automating the cognos analytics > servers from Linux env with ansible code . > > Requirement : we have two Jar files named local_policy.jar > and

Re: [ansible-project] Re: Simple Ansible ping failing

2019-05-01 Thread markmonizhpe
I am aware that this is 5 years old but I had a similar problem that was caused by my ~/.ssh/config file. This post is what helped me find my solution. If anyone else is having this issue, add ssh_args = -F /dev/null to your /etc/ansible/ansible.cf On Saturday, July 12, 2014 at 8:12:53 AM

[ansible-project] Re: How to truncate oracle table with ansible code

2019-05-01 Thread James Cassell
This is a better question for the ansible-project list. V/r, James Cassell On Wed, May 1, 2019, at 4:45 PM, chandrasekhar Mallishetty wrote: > is there any example working code that how to truncate oracle database > table with the ansible code in jinga2 template -- You received this message

Re: [ansible-project] how do I properly set ANSIBLE_BECOME_PASS ?

2019-05-01 Thread James Cassell
On Wed, May 1, 2019, at 4:27 PM, Guy Matz wrote: > Thanks, but that didn't exactly help. I'm not able to figure out what I'm > missing . . . any other thoughts? Thanks again!!! > here's the output from '--only-changed': > > DEFAULT_BECOME(/Users/matz/Code/schransible/ansible.cfg) = True >

Re: [ansible-project] how do I properly set ANSIBLE_BECOME_PASS ?

2019-05-01 Thread Guy Matz
Thanks, but that didn't exactly help. I'm not able to figure out what I'm missing . . . any other thoughts? Thanks again!!! here's the output from '--only-changed': DEFAULT_BECOME(/Users/matz/Code/schransible/ansible.cfg) = True

Re: [ansible-project] how do I properly set ANSIBLE_BECOME_PASS ?

2019-05-01 Thread James Cassell
On Wed, May 1, 2019, at 2:55 PM, Guy Matz wrote: > Hello! Sorry to be so lame. What combination of environment vars do I > need to set in order to not get prompted for a SUDO password?! > > I've tried setting ANSIBLE_BECOME_PASS and ANSIBLE_ASK_BECOME_PASS=False > but I still get prompted . ..

[ansible-project] how do I properly set ANSIBLE_BECOME_PASS ?

2019-05-01 Thread Guy Matz
Hello! Sorry to be so lame. What combination of environment vars do I need to set in order to not get prompted for a SUDO password?! I've tried setting ANSIBLE_BECOME_PASS and ANSIBLE_ASK_BECOME_PASS=False but I still get prompted . .. Thanks, Guy -- You received this message because you are

Re: [ansible-project] Sourcing a script on a remote host to use the functions in the script

2019-05-01 Thread Sudheer S
On 30/04/19 9:26 PM, bren85 wrote: Thanks for the quick reply, That didn't work either, still comes up with the same error: "module_args": {             "_raw_params": "bash -lc 'source /root/vBNG/env.sh && ins'",             "_uses_shell": true,             "argv": null,            

[ansible-project] Re: Copy files between two remote servers WITHOUT synchronize module

2019-05-01 Thread shivharsh . nec
Hi Glen, You may use copy and fetch module as shown below: In the below playbook the files would be fetch from source machine and stored temporarily on the control node and then copied to the destination. --- - hosts: src_apps tasks: - name: List of files to be copied command: