can i do something like this instead. using when condition

    - name: Run Esxcli command

      vmware_host_esxcli:

        hostname: '{{ vcenter_hostname }}'

        username: '{{ admin}}'

        password: '{{ pass }}'

        esxi_hostname: "{{ inventory_hostname }}"

        validate_certs: no

        cmd: '{{ cmd }}'

      delegate_to: localhost

      register: esxcli_output



    - name: Display esxcli output

      debug:

        var: esxcli_output.stdout_lines



    - name: Reboot ESXi host

      vmware_host_powerstate:

        hostname: '{{ vcenter_hostname }}'

        username: '{{ admin}}'

        password: '{{ pass }}'

        esxi_hostname: "{{ inventory_hostname }}"

        validate_certs: no

        state: reboot-host

      delegate_to: localhost

      *when: "esxcli_output.stdout_lines[0] != 'Reboot Required: false'"*

On Fri, Jun 16, 2023 at 7:07 AM Will McDonald <[email protected]> wrote:

> You probably need a handler with a changed_when condition.
>
>
> https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_handlers.html#handlers
>
> https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_error_handling.html#defining-changed
>
> See this discussion:
>
> https://unix.stackexchange.com/a/707238
>
>
> On Fri, 16 Jun 2023 at 14:47, Tony Wong <[email protected]> wrote:
>
>> I got pb that based on output will say:
>>
>> reboot required: True
>> or reboot required: False
>>
>> if its false how do i skip the reboot on the following task?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Ansible Project" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/ansible-project/de46990a-8d98-4dd9-82a8-54299a1e32adn%40googlegroups.com
>> <https://groups.google.com/d/msgid/ansible-project/de46990a-8d98-4dd9-82a8-54299a1e32adn%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Ansible Project" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/ansible-project/brtCjCFdvoU/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CAKtKohQe5TSq%3DNW0BH1Vm3mdO0dhd7NqmJWpcB-WCF7D9OQW5Q%40mail.gmail.com
> <https://groups.google.com/d/msgid/ansible-project/CAKtKohQe5TSq%3DNW0BH1Vm3mdO0dhd7NqmJWpcB-WCF7D9OQW5Q%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CALmkhkr7ZNo18kLxdVD1GuTHVv9QK%3D3%3Dvuny232n2TwTpPu8Rg%40mail.gmail.com.

Reply via email to