Hi all,
I am using the following task in a playbook:
- name: Install .Net 4.6.2
raw: c:/temp/NDP462-KB3151800-x86-x64-AllOS-ENU.exe /q /norestart
when: raw_output.stdout | version_compare('394806', '<')
notify:
- reboot
Everything works with the exception of the "notify". I'm assuming this is because the "changed" value returned by the raw module is false. Is there a way to force "changed" to be true?
Thanks,
Justin