Re: [ansible-project] Ansible playbook code for connecting remote MYSQL db

2022-12-12 Thread Dick Visser
Use this task locally: https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_query_module.html On Mon, 12 Dec 2022 at 18:37, saravanan jothilingam < saravan.dhana...@gmail.com> wrote: > Hi > I am a novice to ansible and slowly making my hand dirty out of it. I am > trying ou

[ansible-project] Ansible playbook code for connecting remote MYSQL db

2022-12-12 Thread saravanan jothilingam
Hi I am a novice to ansible and slowly making my hand dirty out of it. I am trying out a usecase where I need to connect to a remote mysql dbserver from my ansible controller machine and execute some queries against that DB. I would like to know if there is any customized ansible playbook available

[ansible-project] Ansible community package holiday release schedule

2022-12-12 Thread Carol Chen
Hi all, Due to the upcoming holiday season, we will follow the lead of the ansible-core team and will skip the next Ansible release window at the end of December 2022. We will wait for the ansible-core 2.14.2 release, which should happe

Re: [ansible-project] Trying to Setup Azure AD Authentication

2022-12-12 Thread bhanu m
Thank you On Wednesday, November 23, 2022 at 5:19:02 AM UTC-6 dnmv...@gmail.com wrote: > Hi > This is the ansible list. > Your problem seems more of an AWX issue rather than an ansible issue. > Maybe better response on the dedicated AWX support list > > On Wed, 23 Nov 2022 at 06:31, bhanu m wr

[ansible-project] Not able to add execution nodes

2022-12-12 Thread bhanu m
Hello Team, I am trying to add execution nodes for awx-operator. Get below error can someone help me on this. TASK [ansible.receptor.podman : Install podman packages]

Re: [ansible-project] at - specific time & date

2022-12-12 Thread Vladimir Botka
On Mon, 12 Dec 2022 15:30:07 +0100 (CET) dulhaver via Ansible Project wrote: > I want to automate a list of command exections with at. > What is the concepts here to specify something like '16:00 2023-01-19'? For example, to schedule a command at "2022-12-12 17:30:00" declare the variables

Re: [ansible-project] Getting an error...

2022-12-12 Thread Brian Coca
AFAIK, Ansible does not have memory leaks, it does have a 'ballooning' issue with inventory and/or facts, this can be mitigated in some ways: - targeting smaller inventories - using fact caching - not gathering facts/not registering when not needed - turning fact injection off (https://

Re: [ansible-project] at - specific time & date

2022-12-12 Thread Andrew Latham
So you are using ansible.posix.at? That plugin uses a file to run AT as seen at https://github.com/ansible-collections/ansible.posix/blob/main/plugins/modules/at.py#L82 So in the code it uses the ```now +``` method. This may be a situation where a command/shell call would be the solution. On

[ansible-project] at - specific time & date

2022-12-12 Thread dulhaver via Ansible Project
I want to automate a list of command exections with at. Looking at the at modules documentation I see only unit & count for specify the time and date. That looks a litte unprecise to me. What is the concepts here to specify something like '16:00 2023-01-19'? -- You received this message becau

Re: [ansible-project] Ansible

2022-12-12 Thread 'Rowe, Walter P. (Fed)' via Ansible Project
Here are my thoughts: * Consistent, repeatable configuration across any number of machines. * Speedy to push configuration across any number of machines. * Ease of Implementation (modules handle differences across families of Linux). * Declarative description of end state vs havin