New releases: ansible-core 2.13.4, ansible-core 2.12.9

Hi all- we’re happy to announce the general release of:

  • ansible-core 2.13.4
  • ansible-core 2.12.9

How to get it

Hi Matt and all:

Hope you are doing well .

Could you please help me with the below if you get a chance.

  1. How to code a python script to find the ports ( for an example as below) with its speed

eno3-1 G
eno4-1G
eno1
eno2
enp59s0f0-10G
enp59s0f1
enp59s0f2
enp59s0f3
enp94s0f0
enp94s0f1
enp135s0f0
enp135s0f1

and how can I call that script in an ansible playbook.

once I call the script the ansible playbook should prompt for user like below

1.1 Please select the interface for ‘x’ function: enp59s0f0-10G ( for an example)
once one port has been consumed it will be update the port_list in the backend

1.2 please select the interface for ‘y’ function: select _ports

.once the port has been selected/consumed it will be update the port_list in the backend

1.4. Please select the interface for ‘z’ function : select_ports


  1. How to write a task to install ubuntu OS 18.04 or 22 etc using ansible playbook to the remote servers from a control node.

  2. How to write a python script to do a partition on that ubuntu OS and including network configuration to ssh the server :

/boot 1024MB ext4 primary
/ 1TB ext4 primary
/boot/efi 1024MB efi primary
/var others ext4 logical

  1. How to upload a file to a remote server creating a directory like /x/y/file_lis t using ansible task?

  2. How to run a ’ linux command ’ to the remote server using an ansible task in the ansible playbook