diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-06 02:13:24 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-06 02:13:24 +0200 |
| commit | 94e55c784463fea7913791ebd9a53875f3be2e5c (patch) | |
| tree | 2f96c856c2e3975d80ce3f2890db1c5dcdf3e51d /lib | |
| parent | 0acf7bbbbb822f1259cf1e3211e5e79724be6bf7 (diff) | |
| download | abrt-94e55c784463fea7913791ebd9a53875f3be2e5c.tar.gz abrt-94e55c784463fea7913791ebd9a53875f3be2e5c.tar.xz abrt-94e55c784463fea7913791ebd9a53875f3be2e5c.zip | |
trailing whitespace removal. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/CommLayer/DBusClientProxy.h | 72 | ||||
| -rw-r--r-- | lib/CommLayer/DBusServerProxy.h | 11 | ||||
| -rw-r--r-- | lib/CommLayer/Makefile.am | 2 | ||||
| -rw-r--r-- | lib/Plugins/FileTransfer.conf | 2 | ||||
| -rw-r--r-- | lib/Plugins/Makefile.am | 18 | ||||
| -rw-r--r-- | lib/Plugins/abrt-Bugzilla.7 | 12 | ||||
| -rw-r--r-- | lib/Plugins/abrt-FileTransfer.7 | 16 | ||||
| -rw-r--r-- | lib/Plugins/abrt-KerneloopsReporter.7 | 6 | ||||
| -rw-r--r-- | lib/Plugins/abrt-KerneloopsScanner.7 | 8 | ||||
| -rw-r--r-- | lib/Plugins/abrt-Logger.7 | 6 | ||||
| -rw-r--r-- | lib/Plugins/abrt-Mailx.7 | 6 | ||||
| -rw-r--r-- | lib/Plugins/abrt-RunApp.7 | 6 | ||||
| -rw-r--r-- | lib/Plugins/abrt-SQLite3.7 | 4 | ||||
| -rw-r--r-- | lib/Plugins/abrt-plugins.7 | 4 |
14 files changed, 86 insertions, 87 deletions
diff --git a/lib/CommLayer/DBusClientProxy.h b/lib/CommLayer/DBusClientProxy.h index 52ba75d..0293b0a 100644 --- a/lib/CommLayer/DBusClientProxy.h +++ b/lib/CommLayer/DBusClientProxy.h @@ -1,22 +1,22 @@ -/* - Copyright (C) 2009 Jiri Moskovcak (jmoskovc@redhat.com) - Copyright (C) 2009 RedHat inc. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +/* + Copyright (C) 2009 Jiri Moskovcak (jmoskovc@redhat.com) + Copyright (C) 2009 RedHat inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + #include <dbus-c++/dbus.h> #include <dbus-c++/glib-integration.h> #include "DBusCommon.h" @@ -62,7 +62,8 @@ private: ri >> name; ri >> old_owner; ri >> new_owner; - if(name.compare("com.redhat.abrt") == 0){ + if(name.compare("com.redhat.abrt") == 0) + { if(new_owner.length() > 0) { if(m_pStateChangeHandler) @@ -107,7 +108,7 @@ public: std::cout << "~DaemonWatcher" << std::endl; } }; - + class CDBusClient_proxy : public DBus::InterfaceProxy @@ -119,7 +120,7 @@ private: std::string m_sConnName; public: - + CDBusClient_proxy() : DBus::InterfaceProxy(CC_DBUS_IFACE) { @@ -127,7 +128,7 @@ public: connect_signal(CDBusClient_proxy, JobDone, _JobDone_stub); m_sConnName = ""; } - + CDBusClient_proxy(::DBus::Connection &pConnection) : DBus::InterfaceProxy(CC_DBUS_IFACE) { @@ -144,8 +145,8 @@ public: * this functions will invoke the corresponding methods on the remote objects */ /* - - < + + < <m_sUUID;m_sUID;m_sCount;m_sExecutable;m_sPackage> <m_sUUID;m_sUID;m_sCount;m_sExecutable;m_sPackage> <m_sUUID;m_sUID;m_sCount;m_sExecutable;m_sPackage> @@ -155,7 +156,6 @@ public: vector_crash_infos_t GetCrashInfos() { DBus::CallMessage call; - DBus::MessageIter wi = call.writer(); call.member("GetCrashInfos"); @@ -166,11 +166,11 @@ public: ri >> argout; return argout; } - + bool DeleteDebugDump(const std::string& pUUID) { DBus::CallMessage call; - + DBus::MessageIter wi = call.writer(); wi << pUUID; @@ -182,12 +182,12 @@ public: ri >> argout; return argout; } - + map_crash_report_t CreateReport(const std::string& pUUID) { m_bJobDone = false; DBus::CallMessage call; - + DBus::MessageIter wi = call.writer(); wi << pUUID; @@ -199,11 +199,11 @@ public: g_main_loop_run(gloop); return GetJobResult(m_iPendingJobID); }; - + void Report(map_crash_report_t pReport) { DBus::CallMessage call; - + DBus::MessageIter wi = call.writer(); wi << pReport; @@ -211,11 +211,11 @@ public: DBus::Message ret = invoke_method(call); DBus::MessageIter ri = ret.reader(); } - + map_crash_report_t GetJobResult(uint64_t pJobID) { DBus::CallMessage call; - + DBus::MessageIter wi = call.writer(); wi << pJobID; @@ -226,13 +226,13 @@ public: ri >> argout; return argout; } - + public: /* signal handlers for this interface */ virtual void Crash(std::string& value){} - + private: /* unmarshalers (to unpack the DBus message before calling the actual signal handler) @@ -244,7 +244,7 @@ private: std::string value; ri >> value; Crash(value); } - + void _JobDone_stub(const ::DBus::SignalMessage &sig) { DBus::MessageIter ri = sig.reader(); diff --git a/lib/CommLayer/DBusServerProxy.h b/lib/CommLayer/DBusServerProxy.h index 1b8159b..dbf48ad 100644 --- a/lib/CommLayer/DBusServerProxy.h +++ b/lib/CommLayer/DBusServerProxy.h @@ -95,7 +95,7 @@ public: virtual bool Report(map_crash_report_t pReport, const std::string &pDBusSender) = 0; virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pDBusSender) = 0; virtual map_crash_report_t GetJobResult(uint64_t pJobID, const std::string& pDBusSender) = 0; - + public: /* signal emitters for this interface @@ -116,8 +116,7 @@ public: wi << arg1; emit_signal(sig); } - - + void JobDone(const std::string &pDest, uint64_t job_id) { ::DBus::SignalMessage sig("JobDone"); @@ -134,7 +133,7 @@ public: wi << arg1; emit_signal(sig); } - + void Update(const std::string pDest, const std::string& pMessage) { ::DBus::SignalMessage sig("Update"); @@ -143,7 +142,7 @@ public: wi << pMessage; emit_signal(sig); } - + void Warning(const std::string& arg1) { ::DBus::SignalMessage sig("Warning"); @@ -204,7 +203,7 @@ private: wi << argout1; return reply; } - + DBus::Message _GetJobResult_stub(const DBus::CallMessage &call) { DBus::MessageIter ri = call.reader(); diff --git a/lib/CommLayer/Makefile.am b/lib/CommLayer/Makefile.am index 5a1fa50..0b52369 100644 --- a/lib/CommLayer/Makefile.am +++ b/lib/CommLayer/Makefile.am @@ -5,7 +5,7 @@ libABRTCommLayer_la_SOURCES = CommLayerServer.h CommLayerServer.cpp \ DBusServerProxy.h Observer.h DBusCommon.h \ CommLayerInner.h CommLayerInner.cpp \ DBusClientProxy.h CommLayerClientDBus.h CommLayerClientDBus.cpp - + libABRTCommLayer_la_LIBADD = ../../lib/MiddleWare/libABRTMiddleWare.la $(DL_LIBS) $(DBUSCPP_LIBS) libABRTCommLayer_la_LDFLAGS = -version-info 0:1:0 libABRTCommLayer_la_CPPFLAGS = -Wall -Werror -I$(srcdir)/../../lib/MiddleWare\ diff --git a/lib/Plugins/FileTransfer.conf b/lib/Plugins/FileTransfer.conf index cf675e4..75e5671 100644 --- a/lib/Plugins/FileTransfer.conf +++ b/lib/Plugins/FileTransfer.conf @@ -1,6 +1,6 @@ # Configuration of the file transfer reporter plugin # it takes one parameter: -# store - just save information about crash +# store - just save information about crash # upload - upload new crash or saved crashes to the specified url # URL to upload the files to diff --git a/lib/Plugins/Makefile.am b/lib/Plugins/Makefile.am index 7c1ddbb..a061688 100644 --- a/lib/Plugins/Makefile.am +++ b/lib/Plugins/Makefile.am @@ -31,40 +31,40 @@ install-data-hook: $(DESTDIR)$(sysconfdir)/abrt/plugins/Logger.conf # CCpp -libCCpp_la_SOURCES = CCpp.cpp CCpp.h +libCCpp_la_SOURCES = CCpp.cpp CCpp.h libCCpp_la_LDFLAGS = -avoid-version libCCpp_la_LIBADD = $(NSS_LIBS) libCCpp_la_CPPFLAGS = -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils -DCCPP_HOOK_PATH=\"${libexecdir}/hookCCpp\" -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" $(NSS_CFLAGS) # Kerneloops -libKerneloops_la_SOURCES = Kerneloops.cpp Kerneloops.h +libKerneloops_la_SOURCES = Kerneloops.cpp Kerneloops.h libKerneloops_la_LDFLAGS = -avoid-version libKerneloops_la_CPPFLAGS = -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils # KerneloopsReporter -libKerneloopsReporter_la_SOURCES = KerneloopsReporter.cpp KerneloopsReporter.h +libKerneloopsReporter_la_SOURCES = KerneloopsReporter.cpp KerneloopsReporter.h libKerneloopsReporter_la_LDFLAGS = -avoid-version libKerneloopsReporter_la_LIBADD = $(CURL_LIBS) libKerneloopsReporter_la_CPPFLAGS = -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare $(CURL_CFLAGS) -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" # KerneloopsScanner -libKerneloopsScanner_la_SOURCES = KerneloopsScanner.cpp KerneloopsScanner.h KerneloopsSysLog.cpp KerneloopsSysLog.h +libKerneloopsScanner_la_SOURCES = KerneloopsScanner.cpp KerneloopsScanner.h KerneloopsSysLog.cpp KerneloopsSysLog.h libKerneloopsScanner_la_LDFLAGS = -avoid-version libKerneloopsScanner_la_CPPFLAGS = -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" # Mailx -libMailx_la_SOURCES = Mailx.cpp Mailx.h +libMailx_la_SOURCES = Mailx.cpp Mailx.h libMailx_la_LDFLAGS = -avoid-version libMailx_la_CPPFLAGS = -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils -I$(srcdir)/../CommLayer -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" # SQLite3 -libSQLite3_la_SOURCES = SQLite3.cpp SQLite3.h +libSQLite3_la_SOURCES = SQLite3.cpp SQLite3.h libSQLite3_la_LDFLAGS = -avoid-version libSQLite3_la_LIBADD = $(SQLITE3_LIBS) libSQLite3_la_CPPFLAGS = -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils $(SQLITE3_CFLAGS) -DLOCALSTATEDIR='"$(localstatedir)"' # Logger -libLogger_la_SOURCES = Logger.cpp Logger.h +libLogger_la_SOURCES = Logger.cpp Logger.h libLogger_la_LDFLAGS = -avoid-version libLogger_la_CPPFLAGS = -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils -I$(srcdir)/../CommLayer -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" @@ -77,7 +77,7 @@ libSOSreport_la_SOURCES = SOSreport.cpp SOSreport.h libSOSreport_la_LDFLAGS = -avoid-version # Bugzilla -libBugzilla_la_SOURCES = Bugzilla.h Bugzilla.cpp +libBugzilla_la_SOURCES = Bugzilla.h Bugzilla.cpp libBugzilla_la_LIBADD = $(XMLRPC_CPP_LIBS) $(XMLRPC_CLIENT_CPP_LIBS) $(NSS_LIBS) libBugzilla_la_LDFLAGS = -avoid-version libBugzilla_la_CPPFLAGS = $(XMLRPC_CPP_CFLAGS) $(XMLRPC_CLIENT_CPP_CFLAGS) $(NSS_CFLAGS) -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" @@ -89,7 +89,7 @@ libPython_la_LDFLAGS = -avoid-version libPython_la_CPPFLAGS = $(NSS_CFLAGS) -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils # FileTrasfer -libFileTransfer_la_SOURCES = FileTransfer.cpp FileTransfer.h +libFileTransfer_la_SOURCES = FileTransfer.cpp FileTransfer.h libFileTransfer_la_LDFLAGS = -avoid-version libFileTransfer_la_LIBADD = $(CURL_LIBS) libFileTransfer_la_CPPFLAGS = -I$(srcdir)/../CommLayer -I$(srcdir)/../../inc -I$(srcdir)/../MiddleWare -I$(srcdir)/../Utils $(CURL_CFLAGS) -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" diff --git a/lib/Plugins/abrt-Bugzilla.7 b/lib/Plugins/abrt-Bugzilla.7 index c3c0e90..99bb60d 100644 --- a/lib/Plugins/abrt-Bugzilla.7 +++ b/lib/Plugins/abrt-Bugzilla.7 @@ -5,15 +5,15 @@ Bugzilla plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fIBugzilla\fP plugin +it collects the crash data and takes action according to +its configuration. This manual page describes the \fIBugzilla\fP plugin for \fIabrt\fP. .P -This plugin is used to report the crash to a Bugzilla instance. The -plugin will determine the package name and distribution version. The +This plugin is used to report the crash to a Bugzilla instance. The +plugin will determine the package name and distribution version. The crash data is attached to the bug report. .SH INVOCATION -The plugin is invoked in the \fIabrt.conf\fP configuration file. +The plugin is invoked in the \fIabrt.conf\fP configuration file. No parameters are necessary. .SH CONFIGURATION The \fIBugzilla.conf\fP configuration file contains several @@ -39,5 +39,5 @@ ActionsAndReporters = Bugzilla .IR abrt.conf (5), .IR abrt-plugins (7) .SH AUTHOR -Written by Zdenek Prikryl <zprikryl@redhat.com>. +Written by Zdenek Prikryl <zprikryl@redhat.com>. Manual page written by Daniel Novotny <dnovotny@redhat.com>. diff --git a/lib/Plugins/abrt-FileTransfer.7 b/lib/Plugins/abrt-FileTransfer.7 index b126c2c..a04dd42 100644 --- a/lib/Plugins/abrt-FileTransfer.7 +++ b/lib/Plugins/abrt-FileTransfer.7 @@ -5,18 +5,18 @@ FileTransfer plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fIFileTransfer\fP plugin +it collects the crash data and takes action according to +its configuration. This manual page describes the \fIFileTransfer\fP plugin for \fIabrt\fP. .P This plugin is used to transfer the crash report to another machine using a file transfer protocol. The protocols supported -are FTP, FTPS, HTTP, HTTPS, SCP, SFTP, and TFTP. +are FTP, FTPS, HTTP, HTTPS, SCP, SFTP, and TFTP. .SH INVOCATION .P The plugin is invoked in the \fIabrt.conf\fP file, usually in the \fIActionsAndReporters\fP option and/or the \fI[cron]\fP section. -There are two modes of invocation: +There are two modes of invocation: .P * If you use the parameter \fI"store"\fP, the plugin stores a record of the occurrence of @@ -27,12 +27,12 @@ plugin will iterate through the internal list and will send every recorded crash to the server specified in the \fIFileTransfer.conf\fP configuration file. After that, the internal list is cleared. .P -On a production machine, you probably do not want the daemon to send crash +On a production machine, you probably do not want the daemon to send crash data at times that the machine is busy working. This second mode allows you -to send crash reports at a quieter time (at night, perhaps) that you +to send crash reports at a quieter time (at night, perhaps) that you schedule in the \fI[cron]\fP section of \fIabrt.conf\fP. .SH CONFIGURATION -The \fIFileTransfer.conf\fP configuration file contains +The \fIFileTransfer.conf\fP configuration file contains several entries in the format "Option = Value". The options are: .SS URL The URL of the server, where the crash should @@ -41,7 +41,7 @@ the user name and the password, for example: .br URL = ftp://user:passwd@server.com/path .SS ArchiveType -The type of the archive in which to pack the crash data. +The type of the archive in which to pack the crash data. Currently, \fI.tar.gz\fP, \fI.tar.bz2\fP and \fI.zip\fP are supported. The plugin currently relies on external file archiving commandline utilities, which will create the archive. diff --git a/lib/Plugins/abrt-KerneloopsReporter.7 b/lib/Plugins/abrt-KerneloopsReporter.7 index e0d32c3..98bd387 100644 --- a/lib/Plugins/abrt-KerneloopsReporter.7 +++ b/lib/Plugins/abrt-KerneloopsReporter.7 @@ -5,13 +5,13 @@ KerneloopsReporter plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fIKerneloopsReporter\fP +it collects the crash data and takes action according to +its configuration. This manual page describes the \fIKerneloopsReporter\fP plugin for \fIabrt\fP. .P This plugin is used to report the crash to the Kerneloops tracker. .SH INVOCATION -The plugin is invoked in the \fIabrt.conf\fP configuration file. +The plugin is invoked in the \fIabrt.conf\fP configuration file. No parameters are necessary. .SH CONFIGURATION The \fIKerneloopsReporter.conf\fP configuration file contains one entry: diff --git a/lib/Plugins/abrt-KerneloopsScanner.7 b/lib/Plugins/abrt-KerneloopsScanner.7 index d9642a9..ff09484 100644 --- a/lib/Plugins/abrt-KerneloopsScanner.7 +++ b/lib/Plugins/abrt-KerneloopsScanner.7 @@ -5,8 +5,8 @@ KerneloopsScanner plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fIKerneloopsScanner\fP +it collects the crash data and takes action according to +its configuration. This manual page describes the \fIKerneloopsScanner\fP plugin for \fIabrt\fP. .P This plugin reads the system log file (default /var/log/messages) @@ -17,12 +17,12 @@ To distinguish between new crashes and crashes that were already reported, the plugin makes its own entry in the log file, which acts as a separator. .SH INVOCATION -The plugin is invoked in the \fIabrt.conf\fP configuration file. +The plugin is invoked in the \fIabrt.conf\fP configuration file. No parameters are necessary. .SH CONFIGURATION The \fIKerneloopsScanner.conf\fP configuration file contains one entry: .SS SysLogFile -The file to scan. The default is +The file to scan. The default is .br SysLogFile = /var/log/messages .SH EXAMPLES diff --git a/lib/Plugins/abrt-Logger.7 b/lib/Plugins/abrt-Logger.7 index 0f814d2..8ae679f 100644 --- a/lib/Plugins/abrt-Logger.7 +++ b/lib/Plugins/abrt-Logger.7 @@ -5,8 +5,8 @@ Logger plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fILogger\fP plugin +it collects the crash data and takes action according to +its configuration. This manual page describes the \fILogger\fP plugin for \fIabrt\fP. .P This plugin is used to log the crash to a file. @@ -16,7 +16,7 @@ content. It also contains "duplicity check": the ID of the crash, which is used to tell whether the same crash has happened previously. .SH INVOCATION -The plugin is invoked in the \fIabrt.conf\fP configuration file. +The plugin is invoked in the \fIabrt.conf\fP configuration file. No parameters are necessary. .SH CONFIGURATION The \fILogger.conf\fP configuration file contains diff --git a/lib/Plugins/abrt-Mailx.7 b/lib/Plugins/abrt-Mailx.7 index 10d5e4b..90a8bbc 100644 --- a/lib/Plugins/abrt-Mailx.7 +++ b/lib/Plugins/abrt-Mailx.7 @@ -5,8 +5,8 @@ Mailx plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fIMailx\fP plugin +it collects the crash data and takes action according to +its configuration. This manual page describes the \fIMailx\fP plugin for \fIabrt\fP. .P This plugin is used to mail the data about the crash @@ -42,7 +42,7 @@ These are snippets from the \fIabrt.conf\fP configuration file. .br ActionsAndReporters = Mailx("[abrt] a crash occurs") .P -2) When a program in a specific package (in this case "httpd") crashes, +2) When a program in a specific package (in this case "httpd") crashes, send a mail about it. .PP [AnalyzerActionsAndReporters] diff --git a/lib/Plugins/abrt-RunApp.7 b/lib/Plugins/abrt-RunApp.7 index 6d75b12..56a8d2b 100644 --- a/lib/Plugins/abrt-RunApp.7 +++ b/lib/Plugins/abrt-RunApp.7 @@ -5,13 +5,13 @@ RunApp plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fIRunApp\fP plugin +it collects the crash data and takes action according to +its configuration. This manual page describes the \fIRunApp\fP plugin for \fIabrt\fP. .P This plugin is used to run a specified application when the crash occurs. .SH INVOCATION -The plugin is invoked in the \fIabrt.conf\fP configuration file. +The plugin is invoked in the \fIabrt.conf\fP configuration file. The first parameter is the command to run. The second, optional parameter specifies an output file, to which the standard output of the program is saved. diff --git a/lib/Plugins/abrt-SQLite3.7 b/lib/Plugins/abrt-SQLite3.7 index 87df539..c2b39d8 100644 --- a/lib/Plugins/abrt-SQLite3.7 +++ b/lib/Plugins/abrt-SQLite3.7 @@ -5,8 +5,8 @@ SQLite3 database plugin for abrt(8) .P .I abrt is a daemon that watches for application crashes. When a crash occurs, -it collects the crash data and takes action according to -its configuration. This manual page describes the \fISQLite3\fP database plugin +it collects the crash data and takes action according to +its configuration. This manual page describes the \fISQLite3\fP database plugin for \fIabrt\fP. .P This is a database plugin: \fIabrt\fP needs a database in which to store diff --git a/lib/Plugins/abrt-plugins.7 b/lib/Plugins/abrt-plugins.7 index a7c185c..3a99dcb 100644 --- a/lib/Plugins/abrt-plugins.7 +++ b/lib/Plugins/abrt-plugins.7 @@ -9,10 +9,10 @@ it collects the crash data (core file, application's command line etc.) and takes action according to the type of application that crashed and according to the configuration specified in the .I abrt.conf -configuration file. +configuration file. .P Plugins allow abrt to perform various actions: for example, -to report the crash to Bugzilla, to mail the report, to transfer +to report the crash to Bugzilla, to mail the report, to transfer the report via FTP or SCP, or to run a program that you specify. .P This manual page provides a list of all the manual pages for |
