summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2016-12-24 00:36:23 +0200
committerThomas Backlund <tmb@mageia.org>2016-12-24 00:36:23 +0200
commit1ea7c5a1099fb73823cf4fea7e46328945fa4f81 (patch)
tree98b0c2e8ee281de151ddd26f51bfad74cb01a8be
parentb8a9c49c6418e81b01a78feb49c1a038fd907842 (diff)
downloaddrakx-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
-rw-r--r--images/NEWS2
-rw-r--r--images/grub2.config2
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/bootloader.pm6
-rw-r--r--perl-install/install/NEWS3
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)