diff options
author | Thomas Backlund <tmb@mageia.org> | 2016-12-24 00:36:23 +0200 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2016-12-24 00:36:23 +0200 |
commit | 1ea7c5a1099fb73823cf4fea7e46328945fa4f81 (patch) | |
tree | 98b0c2e8ee281de151ddd26f51bfad74cb01a8be /perl-install/bootloader.pm | |
parent | b8a9c49c6418e81b01a78feb49c1a038fd907842 (diff) | |
download | drakx-1ea7c5a1099fb73823cf4fea7e46328945fa4f81.tar drakx-1ea7c5a1099fb73823cf4fea7e46328945fa4f81.tar.gz drakx-1ea7c5a1099fb73823cf4fea7e46328945fa4f81.tar.bz2 drakx-1ea7c5a1099fb73823cf4fea7e46328945fa4f81.tar.xz drakx-1ea7c5a1099fb73823cf4fea7e46328945fa4f81.zip |
disable audit logging by default as it floods the logs
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 3d13dc364..ac12e1852 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1191,8 +1191,8 @@ sub suggest { { root => $root, if_($options{vga_fb}, vga => $options{vga_fb}), #- using framebuffer - if_($options{vga_fb} && $options{splash}, append => "splash noiswmd"), - if_($options{quiet}, append => "splash quiet noiswmd"), + if_($options{vga_fb} && $options{splash}, append => "splash noiswmd audit=0"), + if_($options{quiet}, append => "splash quiet noiswmd audit=0"), }); if ($options{vga_fb} && $e->{label} eq 'linux') { @@ -1201,7 +1201,7 @@ sub suggest { } add_kernel($bootloader, $kernels[0], - { root => $root, label => 'failsafe', append => 'failsafe noiswmd' }) + { root => $root, label => 'failsafe', append => 'failsafe noiswmd audit=0' }) if @kernels; #- search for dos (or windows) boot partition. Do not look in extended partitions! |