From 99d62f5c58a46396d054dbe697c25e119850b227 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Mon, 18 Oct 1993 19:08:36 +0000 Subject: [PATCH] Fix for version name in /etc/motd, now uses uname to get this information! --- etc/rc.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc.local b/etc/rc.local index 0c7f37921e0c..dbbd909a5b91 100644 --- a/etc/rc.local +++ b/etc/rc.local @@ -6,7 +6,7 @@ T=/tmp/_motd rm -f $T -strings /386bsd | grep version: | sed 's/version: /FreeBSD 1.0./' > $T +uname -a > $T echo "" >> $T sed '1,/^$/d' < /etc/motd >> $T cp $T /etc/motd