[ansible-project] Failed to validate GPG signature for mysql-community-release-el7-5.noarch - reg

2020-10-24 Thread Prabhakaran Karuppaih
- name: Install the MySQL repo. dnf: name: http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm state: present Error: TASK [Install the MySQL repo.] ***

Re: [ansible-project] Ansible windows unzip module is failing, how to fix that?

2020-10-24 Thread uday kiran
It is not relevant at all to the question I posted.Please read it once On Thursday, 22 October 2020 at 16:17:48 UTC+5:30 rahul@gmail.com wrote: > Try to update the below one in your inventory file and try to execute > > ansible_winrm_server_cert_validation=ignore > > > or > > > Update the p

Re: [ansible-project] Failed to validate GPG signature for mysql-community-release-el7-5.noarch - reg

2020-10-24 Thread Prabhakaran Karuppaih
Hope someone will reply...Work at stake :( With Hope, Prabhakaran On Sat, 24 Oct 2020, 13:41 Prabhakaran Karuppaih, < arrow.prabhaka...@gmail.com> wrote: > - name: Install the MySQL repo. > dnf: > name: http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm > state: pr

Re: [ansible-project] Advice on build Immutable VM's ( VMware )

2020-10-24 Thread Mauricio Tavares
What do you mean by immutable VM? On Fri, Oct 23, 2020 at 5:52 PM SP wrote: > Hi, > > Advice on build Immutable VM's ( VMware ) and is that possible using > Ansible ? > What is the best way to do? > > -- > You received this message because you are subscribed to the Google Groups > "Ansible Proje

[ansible-project] Re: need a playbook to change esxi root pass

2020-10-24 Thread Tony Wong
Need help on this please. my inventory file [esx] esx1 esx2 esx3 -- playbook --- - name: change root esxi password community.vmware.vmware_local_user_manager: hostname: '{{ esx_host }}' username: root password: '{{ esx_root_pass }}' what else do i n

[ansible-project] Create a variable of interfaces from an IOS switch based on the way they are configured.

2020-10-24 Thread Richard Lucht
Hello, I am looking for way to pull interfaces from an cisco switch and make them a variable based on they way they are currently configured so I can make configuration changes. For example if it is a trunk interface make those the variable or list so I can add another allowed vlan. Or if it i

Re: [ansible-project] Create a list of Failed tasks

2020-10-24 Thread J C
Worked - Just had to add {{ OOC | join(', ') }} to clean up the output. Thank you Vladimir. On Fri, Oct 23, 2020 at 4:35 PM Vladimir Botka wrote: > Set variable OOC_status in the block and use it to select the list of > the hosts. See the inline code below (not tested) > > On Fri, 23 Oct 2020

Re: [ansible-project] Failed to validate GPG signature for mysql-community-release-el7-5.noarch - reg

2020-10-24 Thread Dick Visser
This seems to be not an ansible problem but rather something with the repository setup you have. On Sat, 24 Oct 2020 at 12:53, Prabhakaran Karuppaih < arrow.prabhaka...@gmail.com> wrote: > Hope someone will reply...Work at stake :( > > With Hope, > Prabhakaran > > On Sat, 24 Oct 2020, 13:41 Prab

Re: [ansible-project] Failed to validate GPG signature for mysql-community-release-el7-5.noarch - reg

2020-10-24 Thread sven....@gmail.com
try something like this before adding your package - name: Import key for mysql-repo rpm_key: state: present key: http://repo.mysql.com/RPM-GPG-KEY-mysql Best regards Sven Probst arrow.pr...@gmail.com schrieb am Samstag, 24. Oktober 2020 um 12:53:56 UTC+2: > Hope someone will rep

Re: [ansible-project] Failed to validate GPG signature for mysql-community-release-el7-5.noarch - reg

2020-10-24 Thread Prabhakaran Karuppaih
Thanks Sven. That works for me... On Sun, 25 Oct 2020 at 00:18, sven@gmail.com wrote: > try something like this before adding your package > > - name: Import key for mysql-repo > rpm_key: > state: present > key: http://repo.mysql.com/RPM-GPG-KEY-mysql > > Best regards > Sven Probs

[ansible-project] Re: need a playbook to change esxi root pass

2020-10-24 Thread Tony Wong
this is error I get now The full traceback is: Traceback (most recent call last): File "/tmp/ansible_community.vmware.vmware_local_user_manager_payload_4mdm01xz/ansible_community.vmware.vmware_local_user_manager_payload.zip/ansible_collections/community/vmware/plugins/module_utils/vmware.py",

[ansible-project] Re: need a playbook to change esxi root pass

2020-10-24 Thread Tony Wong
my playbook --- - name: "change the root password" hosts: all tasks: - name: "change root pass" community.vmware.vmware_local_user_manager: hostname: "{{ inventory_hostname }}" local_user_name: "{{ esx_local_root_user }}" local_user_password: "{{ esx_local_root