Page MenuHomec4science

scitas-motd
No OneTemporary

File Metadata

Created
Sun, May 12, 04:01

scitas-motd

#!/bin/bash
# Location of the configuration file
SMOTD_CONFIG="${SMOTD_CONFIG:-/etc/scitas-motd.conf}"
# Read configuration options
if [ -r ${SMOTD_CONFIG} ]
then
. ${SMOTD_CONFIG}
fi
SMOTD=${SMOTD:-/etc/motd.scitas}
if [ -r ${SMOTD} ]
then
cat ${SMOTD}
echo "# Last SCITAS MOTD update - $(date -r ${SMOTD}) #"
fi
exit 0

Event Timeline