summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-02-28 07:53:34 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-02-28 07:53:34 +0000
commit532f9789829accde36375904aae30d024f0a490e (patch)
tree7944d97b3e38cb86e72bed275a124a4ffe18b1d6 /etc
parent7e9bd6036ed9d0e4fe740e9b5da544a1135aa319 (diff)
fsck now raises datasize limit itself.
Diffstat (limited to 'etc')
-rw-r--r--etc/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index 2fb8167c230..f3906a077ec 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.30 1997/02/19 03:59:14 tholo Exp $
+# $OpenBSD: rc,v 1.31 1997/02/28 07:53:33 millert Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -25,7 +25,7 @@ if [ -e /fastboot ]; then
echo "Fast boot: skipping disk checks."
elif [ $1x = autobootx ]; then
echo "Automatic boot in progress: starting file system checks."
- ( ulimit -d 32768; fsck -p )
+ fsck -p
case $? in
0)
;;