Capitalize the configuration name of log level
In the /etc/sysconfig/kdump, we usually use the uppercase configuration name for all options. So let's use the same method to handle this. Signed-off-by: Lianbo Jiang <lijiang@redhat.com> Acked-by: Kairui Song <kasong@redhat.com>
This commit is contained in:
parent
e345ed18e2
commit
0098b5d9f3
@ -35,6 +35,11 @@
|
|||||||
# required variables. Don't call any other logging function before that one!
|
# required variables. Don't call any other logging function before that one!
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Define vairables for the log levels in this module.
|
||||||
|
kdump_stdloglvl=""
|
||||||
|
kdump_sysloglvl=""
|
||||||
|
kdump_kmsgloglvl=""
|
||||||
|
|
||||||
# The dracut-lib.sh is only available in the second kernel, and it won't
|
# The dracut-lib.sh is only available in the second kernel, and it won't
|
||||||
# be used in the first kernel because the dracut-lib.sh is invisible in
|
# be used in the first kernel because the dracut-lib.sh is invisible in
|
||||||
# the first kernel.
|
# the first kernel.
|
||||||
@ -88,6 +93,10 @@ dlog_init() {
|
|||||||
fi
|
fi
|
||||||
kdump_stdloglvl=0
|
kdump_stdloglvl=0
|
||||||
kdump_kmsgloglvl=0
|
kdump_kmsgloglvl=0
|
||||||
|
else
|
||||||
|
kdump_stdloglvl=$KDUMP_STDLOGLVL
|
||||||
|
kdump_sysloglvl=$KDUMP_SYSLOGLVL
|
||||||
|
kdump_kmsgloglvl=$KDUMP_KMSGLOGLVL
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -z "$kdump_stdloglvl" ] && kdump_stdloglvl=3
|
[ -z "$kdump_stdloglvl" ] && kdump_stdloglvl=3
|
||||||
|
Loading…
Reference in New Issue
Block a user