Sha256: c9ba5dd2ddb789b655debdfb12aa9c06ea10fd9f701ff0360a41185d2497786f

Contents?: true

Size: 1.49 KB

Versions: 88

Compression:

Stored size: 1.49 KB

Contents

:foreman-tasks:
#
# Logging configuration can be changed by uncommenting the loggers
# section and the logger configuration desired.
#
#   :loggers:
#     :dynflow:
#       :enabled: true
#     :action:
#       :enabled: true

  # Task backup configuration can be changed by altering the values in
  # the backup section
  #
  :backup:
    #
    # Whether to back up tasks when they are removed
    #
    :backup_deleted_tasks: true
    #
    # Where to put the tasks which were backed up
    #
    :backup_dir: /var/lib/foreman/tasks-backup

# Cleaning configuration: how long should the actions be kept before deleted
# by `rake foreman_tasks:clean` task
#
  :cleanup:
#
# the period after which to delete all the tasks (by default all tasks are not being deleted after some period)
# will be deprecated in Foreman 1.18 and the use of rules is recommended.
#
#     :after: 30d
#
# per action settings to override the default defined in the actions (self.cleanup_after method)
#
#    :actions:
#      - :name: Actions::Foreman::Host::ImportFacts
#        :after: 10d
#
# Rules defined in this section by default don't operate
# on tasks specified in the actions section. This behavior
# can be overriden by setting the override_actions to true
   :rules:
     # Delete successful tasks after a month
     - :filter: result = success
       :after: 30d
     # Delete everything (any action, any state) after one year
     - :states: all # Either list of state names or all
       :after: 1y
       :override_actions: true

Version data entries

88 entries across 88 versions & 1 rubygems

Version Path
foreman-tasks-0.15.2 config/foreman-tasks.yaml.example
foreman-tasks-0.15.1 config/foreman-tasks.yaml.example
foreman-tasks-0.15.0 config/foreman-tasks.yaml.example
foreman-tasks-0.14.5 config/foreman-tasks.yaml.example
foreman-tasks-0.14.4 config/foreman-tasks.yaml.example
foreman-tasks-0.14.3 config/foreman-tasks.yaml.example
foreman-tasks-0.14.2 config/foreman-tasks.yaml.example
foreman-tasks-0.14.1 config/foreman-tasks.yaml.example
foreman-tasks-0.11.3 config/foreman-tasks.yaml.example
foreman-tasks-0.14.0 config/foreman-tasks.yaml.example
foreman-tasks-0.13.4 config/foreman-tasks.yaml.example
foreman-tasks-0.13.3 config/foreman-tasks.yaml.example
foreman-tasks-0.13.2 config/foreman-tasks.yaml.example
foreman-tasks-0.13.1 config/foreman-tasks.yaml.example
foreman-tasks-0.13.0 config/foreman-tasks.yaml.example
foreman-tasks-0.12.2 config/foreman-tasks.yaml.example
foreman-tasks-0.11.2 config/foreman-tasks.yaml.example
foreman-tasks-0.12.1 config/foreman-tasks.yaml.example
foreman-tasks-0.12.0 config/foreman-tasks.yaml.example
foreman-tasks-0.11.1 config/foreman-tasks.yaml.example