summaryrefslogtreecommitdiffstats
path: root/etc/rc.d
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2003-10-13 08:44:07 +0000
committerdougb <dougb@FreeBSD.org>2003-10-13 08:44:07 +0000
commit4c4eba0e009e4c3f8584a7a0af36565a0e5093d9 (patch)
treeeabf9c0b2ab49b050bb31685eb90b0b3441c0404 /etc/rc.d
parenta75a7409ef7d938377de1af33bf02d2083c3ae26 (diff)
downloadFreeBSD-src-4c4eba0e009e4c3f8584a7a0af36565a0e5093d9.zip
FreeBSD-src-4c4eba0e009e4c3f8584a7a0af36565a0e5093d9.tar.gz
* Remove the OS specific bits, since NetBSD isn't interested in
porting this stuff back. * Test /etc/motd for writability before trying to update it. This is especially useful when /etc/ is mounted ro, like on a diskless boot. (Thanks to phk for the idea on this one.) * Make the "updating" message reflect what actually happens.
Diffstat (limited to 'etc/rc.d')
-rwxr-xr-xetc/rc.d/motd34
1 files changed, 13 insertions, 21 deletions
diff --git a/etc/rc.d/motd b/etc/rc.d/motd
index 8368e7c..a77b218 100755
--- a/etc/rc.d/motd
+++ b/etc/rc.d/motd
@@ -16,14 +16,7 @@ rcvar="update_motd"
start_cmd="motd_start"
stop_cmd=":"
-case ${OSTYPE} in
-FreeBSD)
- PERMS="644"
- ;;
-NetBSD)
- PERMS="664"
- ;;
-esac
+PERMS="644"
motd_start()
{
@@ -31,28 +24,27 @@ motd_start()
# Must be done *before* interactive logins are possible
# to prevent possible race conditions.
#
- echo "Updating motd."
+ echo -n 'Updating motd'
if [ ! -f /etc/motd ]; then
install -c -o root -g wheel -m ${PERMS} /dev/null /etc/motd
fi
- case ${OSTYPE} in
- FreeBSD)
- T=`mktemp -t motd`
- uname -v | sed -e 's,^\([^#]*\) #\(.* [1-2][0-9][0-9][0-9]\).*/\([^\]*\) $,\1 (\3) #\2,' > ${T}
- awk '{if (NR == 1) {if ($1 == "FreeBSD") {next} else {print "\n"$0}} else {print}}' < /etc/motd >> ${T}
- ;;
- NetBSD)
- T='/etc/_motd'
- sysctl -n kern.version | while read i; do echo $i; break; done > $T
- sed '1{/^NetBSD.*/{d;};};' < /etc/motd >> $T
- ;;
- esac
+ if [ ! -w /etc/motd ]; then
+ echo ' ... /etc/motd is not writable, update failed.'
+ return
+ fi
+
+ T=`mktemp -t motd`
+ uname -v | sed -e 's,^\([^#]*\) #\(.* [1-2][0-9][0-9][0-9]\).*/\([^\]*\) $,\1 (\3) #\2,' > ${T}
+ awk '{if (NR == 1) {if ($1 == "FreeBSD") {next} else {print "\n"$0}} else {print}}' < /etc/motd >> ${T}
+
cmp -s $T /etc/motd || {
cp $T /etc/motd
chmod ${PERMS} /etc/motd
}
rm -f $T
+
+ echo .
}
load_rc_config $name
OpenPOWER on IntegriCloud