Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110198024
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
Fri, Apr 25, 03:37
Size
337 B
Mime Type
text/x-shellscript
Expires
Sun, Apr 27, 03:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25786844
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