fix a conditional in the motd update
This commit is contained in:
@@ -14,7 +14,7 @@
|
|||||||
- figlet
|
- figlet
|
||||||
- update-motd
|
- update-motd
|
||||||
- lm-sensors
|
- lm-sensors
|
||||||
when: ansible_architecture !== 'armv7l'
|
when: ansible_architecture != 'armv7l'
|
||||||
|
|
||||||
|
|
||||||
- name: remove help text
|
- name: remove help text
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
with_items:
|
with_items:
|
||||||
- /etc/update-motd.d/10-help-text
|
- /etc/update-motd.d/10-help-text
|
||||||
- /etc/update-motd.d/51-cloudguest
|
- /etc/update-motd.d/51-cloudguest
|
||||||
when: ansible_architecture !== 'armv7l'
|
when: ansible_architecture != 'armv7l'
|
||||||
|
|
||||||
|
|
||||||
- name: add new info
|
- name: add new info
|
||||||
@@ -35,4 +35,4 @@
|
|||||||
with_items:
|
with_items:
|
||||||
- { src: hostname.sh, dest: 10-hostname }
|
- { src: hostname.sh, dest: 10-hostname }
|
||||||
- { src: systats.sh, dest: 11-sysstats}
|
- { src: systats.sh, dest: 11-sysstats}
|
||||||
when: ansible_architecture !== 'armv7l'
|
when: ansible_architecture != 'armv7l'
|
||||||
|
|||||||
Reference in New Issue
Block a user