Add support for $defcorename

This commit is contained in:
bouyer 1999-09-28 14:53:17 +00:00
parent 510907ed01
commit eac2fbdb83
2 changed files with 13 additions and 2 deletions

8
etc/rc
View File

@ -1,4 +1,4 @@
# $NetBSD: rc,v 1.131 1999/09/16 11:00:44 darrenr Exp $
# $NetBSD: rc,v 1.132 1999/09/28 14:53:17 bouyer Exp $
# originally from: @(#)rc 8.2 (Berkeley) 3/17/94
# System startup script run by init on autoboot
@ -316,6 +316,12 @@ if checkyesno lkm && [ -f /etc/rc.lkm ]; then
. /etc/rc.lkm
fi
# if $defcorename is set, change it here.
if [ -n "$defcorename" ]; then
echo -n 'setting default core name template: '
sysctl -w kern.defcorename=$defcorename
fi
# if $securelevel is set, change it here, else if it is 0, change
# it to 1 here, before we start login services.
if [ -n "$securelevel" ]; then

View File

@ -1,4 +1,4 @@
# $NetBSD: rc.conf,v 1.57 1999/09/03 13:40:16 itojun Exp $
# $NetBSD: rc.conf,v 1.58 1999/09/28 14:53:17 bouyer Exp $
#
# see rc.conf(5) for more information.
@ -41,6 +41,11 @@ savecore=YES savecore_flags=""
update_motd=YES # updates /etc/motd
dmesg=YES dmesg_flags="" # write /var/run/dmesg.boot
# default core name template. If $defcorename is non-empty, this value will be
# used for core dumps names for programs that didn't get their per-process
# template set (see sysctl(3) and sysctl(8)).
defcorename=""
# Security setting. If $securelevel is non-empty, the system securelevel
# is set to this value early in the boot sequence. Otherwise the default
# action is taken (see init(8)).