Merge pull request #1730 from geerlingguy/1729-ansible-changed

Fixes #1729: Use 'is changed' instead of non-existent changed filter.
This commit is contained in:
David Nuzik 2020-05-04 09:36:38 -07:00 committed by GitHub
commit bbfcb385e7
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,6 @@
- name: Rebooting on Raspbian
shell: reboot now
ignore_errors: true
when: ( boot_cmdline | changed )
when: ( boot_cmdline is changed )
and
( ansible_facts.architecture is search("arm") )