f5-ansible icon indicating copy to clipboard operation
f5-ansible copied to clipboard

Fixed bug in bigip_software_install related to hotfix installation

Open urohit011 opened this issue 3 years ago • 0 comments

root@1-8507391901-ubuntu-server2:/etc/ansible# ansible-playbook play_test.yaml
[WARNING]: ansible.utils.display.initialize_locale has not been called, this may result in incorrectly calculated text widths that can cause Display to print incorrect line
lengths

PLAY [Testing F5 Modules for Ansible] ********************************************************************************************************************************************

TASK [Install new OS] ************************************************************************************************************************************************************
changed: [10.170.10.197]

TASK [Assert Install new OS] *****************************************************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

TASK [Install new OS - Idempotent Check] *****************************************************************************************************************************************
ok: [10.170.10.197]

TASK [Assert Install new OS - Idempotent Check] **********************************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

TASK [Install different version] *************************************************************************************************************************************************
changed: [10.170.10.197]

TASK [Assert Install different version] ******************************************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

TASK [Install different version - Idempotent Check] ******************************************************************************************************************************
ok: [10.170.10.197]

TASK [Assert Install different version - Idempotent Check] ***********************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

TASK [Install hotfix image] ******************************************************************************************************************************************************
changed: [10.170.10.197]

TASK [Assert Install hotfix image] ***********************************************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

TASK [Install hotfix image - Idempotent Check] ***********************************************************************************************************************************
ok: [10.170.10.197]

TASK [Assert Install hotfix image - Idempotent Check] ****************************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

TASK [Install on a new volume] ***************************************************************************************************************************************************
changed: [10.170.10.197]

TASK [Assert Install on a new volume] ********************************************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

TASK [Install on a new volume - Idempotent Check] ********************************************************************************************************************************
ok: [10.170.10.197]

TASK [Assert Install on a new volume - Idempotent Check] *************************************************************************************************************************
ok: [10.170.10.197] => {
    "changed": false,
    "msg": "All assertions passed"
}

PLAY RECAP ***********************************************************************************************************************************************************************
10.170.10.197              : ok=14   changed=4    unreachable=0    failed=1    skipped=0    rescued=0    ignored=0

urohit011 avatar Sep 22 '22 02:09 urohit011