Unverified Commit de48f0c4 authored by David Nuzik's avatar David Nuzik Committed by GitHub

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

Fixes #1729: Use 'is changed' instead of non-existent changed filter.
parents b6fe30ac 27215a5e
...@@ -19,6 +19,6 @@ ...@@ -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") )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment