diff options
author | andreas <andreas@FreeBSD.org> | 1997-05-04 22:33:17 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-05-04 22:33:17 +0000 |
commit | a9a4dc76d0e75135e575d12ac41e8e5a5674dc8c (patch) | |
tree | 3c9cb0a288b95831c359e269de1b1d36880c5f39 | |
parent | 4b4c7c227f49528bcec89652575f748dfef144fb (diff) | |
download | FreeBSD-src-a9a4dc76d0e75135e575d12ac41e8e5a5674dc8c.zip FreeBSD-src-a9a4dc76d0e75135e575d12ac41e8e5a5674dc8c.tar.gz |
re-enabled: . /etc/rc.${arch}
PR:
Reviewed by: bruce
Submitted by:
Obtained from:
-rw-r--r-- | etc/rc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.119 1997/05/03 11:22:16 jkh Exp $ +# $Id: rc,v 1.120 1997/05/04 12:50:33 andreas Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -232,9 +232,9 @@ echo '.' # configure implementation specific stuff arch=`uname -m` -if [ -f /etc/etc.${arch}/rc.${arch} ]; then - . /etc/etc.${arch}/rc.${arch} -fi +if [ -f /etc/rc.${arch} ]; then + . /etc/rc.${arch} +fi # Recover vi editor files. vibackup=`echo /var/tmp/vi.recover/vi.*` |