summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-22 20:14:10 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-22 20:14:10 +0000
commitef44cfbd12f46c8bc70a92672b8cbba7685127de (patch)
treecf9f28fd5e245d3bcb21beaab0fe74dde10b56bb /etc
parentff4ce18e919807fbd34b9ade85e7b121bfdf4dea (diff)
crank ulimit -d for fsck run (someone with a 19GB ccd ran into a problem)
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 616b11fc5eb..877ee3b2700 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.27 1996/12/07 12:19:00 deraadt Exp $
+# $OpenBSD: rc,v 1.28 1996/12/22 20:14:09 deraadt 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."
- fsck -p
+ ( ulimit -d 32768; fsck -p )
case $? in
0)
;;