diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-06-25 12:17:17 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-06-25 12:17:17 +0000 |
| commit | 083b81e8e79d69d09a5b7dbe4d22fbf185b5ec8b (patch) | |
| tree | 5f4ebed3c132f494340d95f7ed1d67dd24f025fb /etc | |
| parent | edbecb639bb393a769740ce583ca93d7dc2538ee (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/rc.local | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/rc.local b/etc/rc.local index 2b2a60d37264..3af6b3e91d94 100644 --- a/etc/rc.local +++ b/etc/rc.local @@ -1,9 +1,14 @@ # # site-specific startup actions, daemons # -# $Id$ +# $Id: rc.local,v 1.23 1997/02/23 09:20:47 peter Exp $ # +# If there is a global system configuration file, suck it in. +if [ -f /etc/rc.conf ]; then + . /etc/rc.conf +fi + T=/tmp/_motd rm -f $T uname -v | sed -e 's,^\([^#]*\) #\(.* [1-2][0-9][0-9][0-9]\).*/\([^\]*\) $,\1 (\3) #\2,' > $T |
