From 8bb39632fd0ba383d5eebf352680f5838d2ed60d Mon Sep 17 00:00:00 2001 From: "Glenn K. Lockwood" Date: Sun, 26 Jul 2020 21:37:08 -0700 Subject: [PATCH] update motd --- roles/common/templates/etc/motd | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/roles/common/templates/etc/motd b/roles/common/templates/etc/motd index 688c467..bc18efa 100644 --- a/roles/common/templates/etc/motd +++ b/roles/common/templates/etc/motd @@ -1,7 +1,20 @@ - +-------------------------------------------------------------------------------- +{% if myconfig.hostname == "cloverdale" %} + .~~. .~~. + '. \ ' ' / .' + .~ .~~~..~. + : .~.'~'.~. : {{ myconfig.hostname }} + ~ ( ) ( ) ~ + ( : '~'.~.'~' : ) {{ ansible_processor_count }} core{% if ansible_processor_count > 1 %}s{% endif %}, {{ ansible_memtotal_mb }} MB RAM + ~ .~ ( ) ~. ~ {{ ansible_lsb.description }} + ( : '~' : ) + '~ .~~~. ~' + '~' +{% else %} {{ myconfig.hostname }} {{ ansible_processor_count }} core{% if ansible_processor_count > 1 %}s {% endif %} {{ ansible_memtotal_mb }} MB RAM {{ ansible_lsb.description }} +{% endif %} --------------------------------------------------------------------------------