From 1ea7c5a1099fb73823cf4fea7e46328945fa4f81 Mon Sep 17 00:00:00 2001 From: Thomas Backlund Date: Sat, 24 Dec 2016 00:36:23 +0200 Subject: disable audit logging by default as it floods the logs --- images/NEWS | 2 ++ images/grub2.config | 2 +- perl-install/NEWS | 3 +++ perl-install/bootloader.pm | 6 +++--- perl-install/install/NEWS | 3 +++ 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/images/NEWS b/images/NEWS index 49962acec..92cba4978 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,5 @@ +- disable audit logging as it floods the logs + Version 2.40 - 22 December 2016 by Thomas Backlund - fix background theme image name (mga#19468) diff --git a/images/grub2.config b/images/grub2.config index 36372363b..c6db07f13 100644 --- a/images/grub2.config +++ b/images/grub2.config @@ -23,7 +23,7 @@ set timeout=10 search --no-floppy --set=root -l 'Mageia-6-x86_64-netinstall' menuentry 'Start Mageia 6 (Cauldron) Install' { - linux /isolinux/x86_64/vmlinuz quiet noiswmd + linux /isolinux/x86_64/vmlinuz audit=0 quiet noiswmd initrd /isolinux/x86_64/all.rdz } 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) -- cgit v1.2.1