Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98565433
scitas-motd
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jan 14, 09:52
Size
337 B
Mime Type
text/x-shellscript
Expires
Thu, Jan 16, 09:52 (2 d)
Engine
blob
Format
Raw Data
Handle
23604995
Attached To
rSCMOTDSCRIPTS scitas-motd-scripts
scitas-motd
View Options
#!/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
Log In to Comment