61 lines
1.5 KiB
Diff
61 lines
1.5 KiB
Diff
From 6dfa20921a88453718d1e4642e109f6d1be69861 Mon Sep 17 00:00:00 2001
|
|
From: Jakub Filak <jfilak@redhat.com>
|
|
Date: Fri, 1 Aug 2014 09:31:53 +0200
|
|
Subject: [PATCH 14/24] oops: add man page
|
|
|
|
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
|
---
|
|
doc/Makefile.am | 1 +
|
|
doc/abrt-oops.conf.txt | 27 +++++++++++++++++++++++++++
|
|
2 files changed, 28 insertions(+)
|
|
create mode 100644 doc/abrt-oops.conf.txt
|
|
|
|
diff --git a/doc/Makefile.am b/doc/Makefile.am
|
|
index 064e2ba..abebdb0 100644
|
|
--- a/doc/Makefile.am
|
|
+++ b/doc/Makefile.am
|
|
@@ -49,6 +49,7 @@ MAN5_TXT += abrt-xorg.conf.txt
|
|
MAN5_TXT += abrt-python.conf.txt
|
|
MAN5_TXT += abrt-python3.conf.txt
|
|
MAN5_TXT += abrt-CCpp.conf.txt
|
|
+MAN5_TXT += abrt-oops.conf.txt
|
|
MAN5_TXT += gpg_keys.conf.txt
|
|
MAN5_TXT += abrt-vmcore.conf.txt
|
|
|
|
diff --git a/doc/abrt-oops.conf.txt b/doc/abrt-oops.conf.txt
|
|
new file mode 100644
|
|
index 0000000..1e2a2ef
|
|
--- /dev/null
|
|
+++ b/doc/abrt-oops.conf.txt
|
|
@@ -0,0 +1,27 @@
|
|
+abrt-oops.conf(5)
|
|
+=================
|
|
+
|
|
+NAME
|
|
+----
|
|
+abrt-oops.conf - Configuration file for ABRT's Kernel Oops extractor
|
|
+
|
|
+DESCRIPTION
|
|
+-----------
|
|
+The configuration file consists of items in the format "Option = Value".
|
|
+The following items are recognized:
|
|
+
|
|
+DropNotReportableOopses = 'yes' / 'no'
|
|
+ If you want to see only reportable oopses, set to "yes".
|
|
+ Default is 'no': do not drop them.
|
|
+
|
|
+OnlyFatalMCE = 'yes' / 'no'
|
|
+ If you want to see only fatal MCEs, set to "yes".
|
|
+ Defaults is 'yes': detect only fatal ones.
|
|
+
|
|
+SEE ALSO
|
|
+--------
|
|
+abrt.conf(5)
|
|
+
|
|
+AUTHORS
|
|
+-------
|
|
+* ABRT team
|
|
--
|
|
2.1.0
|
|
|