100 lines
2.6 KiB
Plaintext
100 lines
2.6 KiB
Plaintext
|
## Path: System/Kernel/Kdump
|
||
|
## Description: Crash Dump Configuration
|
||
|
|
||
|
## Type: string
|
||
|
## Default: "kdump"
|
||
|
## ServiceRestart: kdump
|
||
|
#
|
||
|
# Kernel Version string for the -kdump kernel, such as 2.6.16-5-kdump
|
||
|
# If no version is specified, then the init script will try to find a
|
||
|
# kdump kernel with the same version number as the running kernel.
|
||
|
# The init script will use a kernel named:
|
||
|
# /boot/vmlinux-$KDUMP_KERNELVER
|
||
|
# Using "kdump" will default to the most recently installed kdump kernel.
|
||
|
#
|
||
|
KDUMP_KERNELVER="kdump"
|
||
|
|
||
|
## Type: string
|
||
|
## Default: ""
|
||
|
## ServiceRestart: kdump
|
||
|
#
|
||
|
# The kdump commandline is the command line that needs to be passed off to
|
||
|
# the kdump kernel. This will likely match the contents of the grub kernel
|
||
|
# line. For example:
|
||
|
# KDUMP_COMMANDLINE="ro root=LABEL=/"
|
||
|
# If a command line is not specified, the default will be taken from
|
||
|
# /proc/cmdline
|
||
|
#
|
||
|
KDUMP_COMMANDLINE=""
|
||
|
|
||
|
## Type: string
|
||
|
## Default: ""
|
||
|
## ServiceRestart: kdump
|
||
|
#
|
||
|
# Additional arguments passed to kexec. For example, to generate
|
||
|
# ELF32 dump on x86-64 to allow i386 systems to read dump, set
|
||
|
# "--elf32-core-headers" here.
|
||
|
#
|
||
|
# Keep this empty in most cases.
|
||
|
#
|
||
|
KEXEC_OPTIONS=""
|
||
|
|
||
|
## Type: list(1,2,3,5,s)
|
||
|
## Default: 1
|
||
|
## ServiceRestart: kdump
|
||
|
#
|
||
|
# The run-level to boot the kdump kernel. The default is "1".
|
||
|
# If you need networks in the kdump environment, set "3".
|
||
|
#
|
||
|
KDUMP_RUNLEVEL="1"
|
||
|
|
||
|
## Type: yesno
|
||
|
## Default: yes
|
||
|
#
|
||
|
# Immediately reboot after saving the core in the kdump kernel?
|
||
|
# use "yes" or "no". Default is "yes"
|
||
|
#
|
||
|
KDUMP_IMMEDIATE_REBOOT="yes"
|
||
|
|
||
|
## Type: string
|
||
|
## Default: ""
|
||
|
#
|
||
|
# A script or command executed to process and transfer the dump image.
|
||
|
# It can read the dump image either via /proc/vmcore or /dev/oldmem.
|
||
|
#
|
||
|
# Keeping this empty will use the default dumper, which copies the vmcore
|
||
|
# file to $KDUMP_SAVEDIR with some system checks.
|
||
|
#
|
||
|
KDUMP_TRANSFER=""
|
||
|
|
||
|
## Type: string
|
||
|
## Default: "/var/log/dump"
|
||
|
#
|
||
|
# Which directory should the dumps be saved in by the default dumper?
|
||
|
#
|
||
|
KDUMP_SAVEDIR="/var/log/dump"
|
||
|
|
||
|
## Type: integer
|
||
|
## Default: 5
|
||
|
#
|
||
|
# Specifies how many old dumps are kept. If the number of dump files
|
||
|
# exceeds this number, older dumps are removed.
|
||
|
#
|
||
|
# You can prevent the automatic removal by setting zero to this.
|
||
|
# The default value is 5.
|
||
|
#
|
||
|
KDUMP_KEEP_OLD_DUMPS=5
|
||
|
|
||
|
## Type: integer
|
||
|
## Default: 64
|
||
|
#
|
||
|
# Specifies the minimal free disk space (in MB unit) on the dump
|
||
|
# partition. If the free disk space is less than the sum of this
|
||
|
# value and memory size, the default dumper won't save vmcore file
|
||
|
# in order to keep the system sane.
|
||
|
#
|
||
|
# Setting zero forces to dump without check.
|
||
|
# The default value is 64MB.
|
||
|
#
|
||
|
KDUMP_FREE_DISK_SIZE=64
|