From 51f8bb0ac20f165182dadb0ac87c2fdfc8c97031 Mon Sep 17 00:00:00 2001 From: richard Date: Sun, 17 Feb 2019 17:33:13 -0500 Subject: [PATCH] fix a conditional in the motd update --- roles/motd/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/motd/tasks/main.yml b/roles/motd/tasks/main.yml index d88ce54..4584cb5 100644 --- a/roles/motd/tasks/main.yml +++ b/roles/motd/tasks/main.yml @@ -14,7 +14,7 @@ - figlet - update-motd - lm-sensors - when: ansible_architecture !== 'armv7l' + when: ansible_architecture != 'armv7l' - name: remove help text @@ -24,7 +24,7 @@ with_items: - /etc/update-motd.d/10-help-text - /etc/update-motd.d/51-cloudguest - when: ansible_architecture !== 'armv7l' + when: ansible_architecture != 'armv7l' - name: add new info @@ -35,4 +35,4 @@ with_items: - { src: hostname.sh, dest: 10-hostname } - { src: systats.sh, dest: 11-sysstats} - when: ansible_architecture !== 'armv7l' + when: ansible_architecture != 'armv7l'