From 04aab9deefe0dfdaeba4cdba11f81ee6177294e9 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 26 Jan 2010 16:39:29 +0100 Subject: FileTransfer.conf, TicketUploader.conf: better comments Signed-off-by: Denys Vlasenko --- lib/Plugins/FileTransfer.conf | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) (limited to 'lib/Plugins/FileTransfer.conf') diff --git a/lib/Plugins/FileTransfer.conf b/lib/Plugins/FileTransfer.conf index d75488c..5e23140 100644 --- a/lib/Plugins/FileTransfer.conf +++ b/lib/Plugins/FileTransfer.conf @@ -1,22 +1,36 @@ Enabled = yes -# Configuration of the file transfer reporter plugin -# it takes one parameter: -# store - just save information about crash -# upload - upload new crash or saved crashes to the specified url +# Configuration of the FileTransfer reporter plugin. + +# The plugin is invoked in the abrt.conf file, usually in the +# ActionsAndReporters option and/or the [cron] section. +# There are two modes of invocation: +# +# * Specify FileTransfer(one) in ActionsAndReporters directive. +# Immediately after crash is detected, the plugin transfers +# crash data to the server specified via URL directive in this file. +# +# * Specify FileTransfer(store) in ActionsAndReporters directive +# and add "HH:MM = FileTransfer" line in [cron] section. +# At the time of the crash, the plugin stores a record of it +# in its internal list. When specified time is reached, +# the plugin iterates through its internal list and sends +# every recorded crash to the specified URL. +# After that, the internal list is cleared. + # URL to upload the files to # supported: ftp, ftps, http, https, scp, sftp, tftp, file # for example: ftp://user:password@server.name/directory # or: scp://user:password@server.name:port/directory etc. -# for testing: file:///tmp +# for testing: file:///tmp/test_directory URL = -#archive type, one of .zip, .tar.gz or .tar.bz2 +# Archive type, one of .zip, .tar.gz or .tar.bz2 ArchiveType = .tar.gz -#how many times we try to upload the file +# How many times we try to upload the file RetryCount = 3 -#how long we wait between we retry the upload (in seconds) +# How long we wait between we retry the upload (in seconds) RetryDelay = 20 -- cgit