summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/bootloader.pm6
-rw-r--r--perl-install/install/NEWS3
3 files changed, 9 insertions, 3 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index ce910dfb5..6187c544b 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- bootloader:
+ o disable audit logging as it floods the logs
+
Version 17.65 - 12 December 2016
- drakboot:
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!
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 6bf829695..630560bf2 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,6 @@
+- bootloader:
+ o disable audit logging as it floods the logs
+
Version 17.68 - 14 December 2016
- fix progress bar on i586 (mga#19930)