Browse Source

Do not log to kmsg/syslog and files for "--print-cmdline"

master
Harald Hoyer 11 years ago
parent
commit
535f61ca4a
  1. 8
      dracut.sh

8
dracut.sh

@ -834,6 +834,13 @@ trap 'exit 1;' SIGINT
export DRACUT_KERNEL_LAZY="1" export DRACUT_KERNEL_LAZY="1"
export DRACUT_RESOLVE_LAZY="1" export DRACUT_RESOLVE_LAZY="1"


if [[ $print_cmdline ]]; then
stdloglvl=0
sysloglvl=0
fileloglvl=0
kmsgloglvl=0
fi

if [[ -f $dracutbasedir/dracut-functions.sh ]]; then if [[ -f $dracutbasedir/dracut-functions.sh ]]; then
. $dracutbasedir/dracut-functions.sh . $dracutbasedir/dracut-functions.sh
else else
@ -907,6 +914,7 @@ for ((i=0; i < ${#dracut_args[@]}; i++)); do
dracut_args[$i]="\"${dracut_args[$i]}\"" dracut_args[$i]="\"${dracut_args[$i]}\""
#" keep vim happy #" keep vim happy
done done

dinfo "Executing: $0 ${dracut_args[@]}" dinfo "Executing: $0 ${dracut_args[@]}"


[[ $do_list = yes ]] && { [[ $do_list = yes ]] && {

Loading…
Cancel
Save