[OpenAFS] FS crash cores on debian
Matthew Cocker
matt@cs.auckland.ac.nz
Wed, 13 Oct 2004 11:37:40 +1300
Hi
After writing the last post I realised that by default on debian core
file size is set to zero.
I have changed the startup script for the fileserver to set it to
unlimited. The should mean bosserver starts with core size unlimited I
think, which mean that the FS crash cores will now be written I hope.
change I made is below. Am I doing this the right way?
case "$1" in
start)
echo -n "Starting $DESC: "
# set core size
ulimit -c unlimited
start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON
echo "$NAME."
;;
Cheers
Matt