For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

vkrishna91's avatar
vkrishna91
Icon for Nimbostratus rankNimbostratus
Oct 10, 2022
Solved

Unable to use ansible playbook to upgrade BIGIP - VE to 15.1.6.1 from 15.1.5.1

Hi Team, I'm trying to utilize ansible playbook to automate our F5 upgrade. Current version: 15.1.5.1 New version: 15.1.6.1 I'm trying to utilize a bash script to dynamically identify the par...
  • Matt_Mabis's avatar
    Oct 27, 2022

    Just for anyone else who read this, the issue was a local execution 

     

      connection: local
    

     

    this causes the system to SSH to itself and there is no tmsh on the ansible host.   removing this line and then adding delegate_to: localhost when calling a BIG-IP module solved this issue.  it allows the playbook to remote execute the code via SSH

     

    After removing it and fixing a few code tweaks we were able to launch the code