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

Fixes #1729: Use 'is changed' instead of non-existent changed filter.
pull/1739/head
David Nuzik 2020-05-04 09:36:38 -07:00 committed by GitHub
commit de48f0c43d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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