Add coordinator state to MOTD
This commit is contained in:
parent
cb6199ef0d
commit
8c3b5d7dab
|
@ -15,6 +15,11 @@
|
|||
when: newhost_check.changed
|
||||
tags: always
|
||||
|
||||
# Set coordinator state fact
|
||||
- set_fact:
|
||||
is_coordinator: "{% for node in pvc_nodes if node.hostname == inventory_hostname %}{{ node.is_coordinator }}{% endfor %}"
|
||||
tags: always
|
||||
|
||||
#
|
||||
# Set Debian details
|
||||
#
|
||||
|
|
|
@ -22,7 +22,7 @@ MANUFACTURER="$( /usr/sbin/dmidecode | grep -A1 'Chassis Information' | tail -1
|
|||
if [[ -z ${MANUFACTURER} ]]; then
|
||||
MANUFACTURER='Unknown'
|
||||
fi
|
||||
echo "> \033[1;37mPVC node\033[0m on \033[1;31m${MANUFACTURER}\033[0m hardware" >> $TMPFILE
|
||||
echo "> \033[1;37mPVC {% if is_coordinator %}coordinator{% else %}hypervisor{% endif %} node\033[0m on \033[1;31m${MANUFACTURER}\033[0m hardware" >> $TMPFILE
|
||||
echo "> $(/bin/uname -srvmo)" >> $TMPFILE
|
||||
|
||||
mv $TMPFILE $TGTFILE || rm $TMPFILE
|
||||
|
|
Loading…
Reference in New Issue