Blame augeas/test_abrt.aug

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