Index: branches/releng-9.0/nanobsd/files/etc/motd.cshrc
===================================================================
--- branches/releng-9.0/nanobsd/files/etc/motd.cshrc	(revision 10918)
+++ branches/releng-9.0/nanobsd/files/etc/motd.cshrc	(revision 10918)
@@ -0,0 +1,24 @@
+#!/bin/csh
+#
+# Display some tricks and pointers for management on login.
+#
+# Rick van der Zwet <rick@wirelessleiden.nl>
+#
+echo ""
+echo "Statistics:"
+echo " - Build "`grep 'Revision:' /tools/wl-release.txt`
+echo " - Config "`grep Generated /usr/local/etc/wleiden.yaml | tr -d '#'`
+setenv cs_conn `arp -na | grep -v -e ' 00:15:6d' -e 'incomplete' -e 'permanent' -e ' 00:0d:b9' | wc -l`
+setenv cs_auth `pfctl -twlportal -Tshow | wc -l`
+echo " - $cs_conn clients and $cs_auth authenticated"
+echo " - "`uptime`
+echo ""
+echo "Active Bridges:"
+arp -na | grep -e ' 00:15:6d' | sed -e 's/^/ - /' | grep ' ' || echo " - none"
+echo ""
+echo "Active Neighboors:"
+arp -a | grep -v 'permanent' | grep ' 00:0d:b9' |\
+  sed -e 's/^/ - /' -e 's/.wleiden.net//' -e 's/expires .*$//' |\
+  grep ' ' || echo " - none"
+echo ""
+
Index: branches/releng-9.0/nanobsd/files/root/.cshrc
===================================================================
--- branches/releng-9.0/nanobsd/files/root/.cshrc	(revision 10917)
+++ branches/releng-9.0/nanobsd/files/root/.cshrc	(revision 10918)
@@ -37,21 +37,4 @@
     
 if ($?prompt) then
-   # Display some tricks and pointers for management on login.
-   echo ""
-   echo "Statistics:"
-   echo " - Build "`grep 'Revision:' /tools/wl-release.txt`
-   echo " - Config "`grep Generated /usr/local/etc/wleiden.yaml | tr -d '#'`
-   setenv cs_conn `arp -na | grep -v -e ' 00:15:6d' -e 'incomplete' -e 'permanent' -e ' 00:0d:b9' | wc -l`
-   setenv cs_auth `pfctl -twlportal -Tshow | wc -l`
-   echo " - $cs_conn clients and $cs_auth authenticated"
-   echo " - "`uptime`
-   echo ""
-   echo "Active Bridges:"
-   arp -na | grep -e ' 00:15:6d' | sed -e 's/^/ - /' | grep ' ' || echo " - none"
-   echo ""
-   echo "Active Neighboors:"
-   arp -a | grep -v 'permanent' | grep ' 00:0d:b9' |\
-     sed -e 's/^/ - /' -e 's/.wleiden.net//' -e 's/expires .*$//' |\
-     grep ' ' || echo " - none"
-   echo ""
+   [ -x /etc/motd.cshrc ] && source /etc/motd.cshrc
 endif
Index: branches/releng-9.0/nanobsd/files/tools/motd
===================================================================
--- branches/releng-9.0/nanobsd/files/tools/motd	(revision 10918)
+++ branches/releng-9.0/nanobsd/files/tools/motd	(revision 10918)
@@ -0,0 +1,8 @@
+#!/bin/csh
+#
+# Re-display MOTD and other startup messages.
+#
+# Rick van der Zwet <rick@wirelessleiden.nl>
+#
+cat /etc/motd
+[ -x /etc/motd.cshrc ] && source /etc/motd.cshrc
