Blame augeas/test_abrt.aug

Packit 8ea169
module Test_abrt =
Packit 8ea169
Packit 8ea169
    let conf ="# Enable this if you want abrtd to auto-unpack crashdump tarballs which appear
Packit 8ea169
# in this directory (for example, uploaded via ftp, scp etc).
Packit 8ea169
# Note: you must ensure that whatever directory you specify here exists
Packit 8ea169
# and is writable for abrtd. abrtd will not create it automatically.
Packit 8ea169
#
Packit 8ea169
#WatchCrashdumpArchiveDir = /var/spool/abrt-upload
Packit 8ea169
Packit 8ea169
# Max size for crash storage [MiB] or 0 for unlimited
Packit 8ea169
#
Packit 8ea169
MaxCrashReportsSize = 1000
Packit 8ea169
Packit 8ea169
# Specify where you want to store coredumps and all files which are needed for
Packit 8ea169
# reporting. (default:/var/tmp/abrt)
Packit 8ea169
#
Packit 8ea169
# Changing dump location could cause problems with SELinux. See man abrt_selinux(8).
Packit 8ea169
#
Packit 8ea169
#DumpLocation = /var/tmp/abrt
Packit 8ea169
Packit 8ea169
# If you want to automatically clean the upload directory you have to tweak the
Packit 8ea169
# selinux policy.
Packit 8ea169
#
Packit 8ea169
DeleteUploaded = no
Packit 8ea169
Packit 8ea169
# A name of event which is run automatically after problem's detection. The
Packit 8ea169
# event should perform some fast analysis and exit with 70 if the
Packit 8ea169
# problem is known.
Packit 8ea169
#
Packit 8ea169
# In order to run this event automatically after detection, the
Packit 8ea169
# AutoreportingEnabled option must be configured to 'yes'
Packit 8ea169
#
Packit 8ea169
# Default value: report_uReport
Packit 8ea169
#
Packit 8ea169
AutoreportingEvent = report_uReport
Packit 8ea169
Packit 8ea169
# Enables automatic running of the event configured in AutoreportingEvent option.
Packit 8ea169
#
Packit 8ea169
AutoreportingEnabled = no
Packit 8ea169
Packit 8ea169
# Enables shortened GUI reporting where the reporting is interrupted after
Packit 8ea169
# AutoreportingEvent is done.
Packit 8ea169
#
Packit 8ea169
# Default value: Yes but only if application is running in GNOME desktop
Packit 8ea169
#                session; otherwise No.
Packit 8ea169
#
Packit 8ea169
# ShortenedReporting = yes
Packit 8ea169
"
Packit 8ea169
Packit 8ea169
    test Abrt.lns get conf =
Packit 8ea169
        { "#comment" = "Enable this if you want abrtd to auto-unpack crashdump tarballs which appear" }
Packit 8ea169
        { "#comment" = "in this directory (for example, uploaded via ftp, scp etc)." }
Packit 8ea169
        { "#comment" = "Note: you must ensure that whatever directory you specify here exists" }
Packit 8ea169
        { "#comment" = "and is writable for abrtd. abrtd will not create it automatically." }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "#comment" = "WatchCrashdumpArchiveDir = /var/spool/abrt-upload" }
Packit 8ea169
        {}
Packit 8ea169
        { "#comment" = "Max size for crash storage [MiB] or 0 for unlimited" }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "MaxCrashReportsSize" = "1000" }
Packit 8ea169
        {}
Packit 8ea169
        { "#comment" = "Specify where you want to store coredumps and all files which are needed for" }
Packit 8ea169
        { "#comment" = "reporting. (default:/var/tmp/abrt)" }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "#comment" = "Changing dump location could cause problems with SELinux. See man abrt_selinux(8)." }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "#comment" = "DumpLocation = /var/tmp/abrt" }
Packit 8ea169
        {}
Packit 8ea169
        { "#comment" = "If you want to automatically clean the upload directory you have to tweak the" }
Packit 8ea169
        { "#comment" = "selinux policy." }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "DeleteUploaded" = "no" }
Packit 8ea169
        {}
Packit 8ea169
        { "#comment" = "A name of event which is run automatically after problem's detection. The" }
Packit 8ea169
        { "#comment" = "event should perform some fast analysis and exit with 70 if the" }
Packit 8ea169
        { "#comment" = "problem is known." }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "#comment" = "In order to run this event automatically after detection, the" }
Packit 8ea169
        { "#comment" = "AutoreportingEnabled option must be configured to 'yes'" }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "#comment" = "Default value: report_uReport" }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "AutoreportingEvent" = "report_uReport" }
Packit 8ea169
        {}
Packit 8ea169
        { "#comment" = "Enables automatic running of the event configured in AutoreportingEvent option." }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "AutoreportingEnabled" = "no" }
Packit 8ea169
        {}
Packit 8ea169
        { "#comment" = "Enables shortened GUI reporting where the reporting is interrupted after" }
Packit 8ea169
        { "#comment" = "AutoreportingEvent is done." }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "#comment" = "Default value: Yes but only if application is running in GNOME desktop" }
Packit 8ea169
        { "#comment" = "session; otherwise No." }
Packit 8ea169
        { "#comment" = "" }
Packit 8ea169
        { "#comment" = "ShortenedReporting = yes" }