mirror of https://github.com/k3s-io/k3s
Merge pull request #1730 from geerlingguy/1729-ansible-changed
Fixes #1729: Use 'is changed' instead of non-existent changed filter.pull/1739/head
commit
de48f0c43d
|
@ -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") )
|
||||||
|
|
Loading…
Reference in New Issue