abrt: Bring roles up to date with upstream
This commit is contained in:
parent
5177b92864
commit
89f150cd8c
8 changed files with 32 additions and 24 deletions
|
@ -1,2 +1,2 @@
|
||||||
install_date: Fri Mar 27 19:49:42 2020
|
install_date: Thu May 27 08:27:11 2021
|
||||||
version: master
|
version: master
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
loop: "{{ eol_opsys | selectattr('opsys') | selectattr('release') | list }}"
|
loop: "{{ eol_opsys | selectattr('opsys') | selectattr('release') | list }}"
|
||||||
become: yes
|
become: yes
|
||||||
become_user: faf
|
become_user: faf
|
||||||
register: remove_eoled_output
|
|
||||||
failed_when: false
|
failed_when: false
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,9 @@ rs_allow_interactive: false
|
||||||
# Allow X-CoreFileDirectory header
|
# Allow X-CoreFileDirectory header
|
||||||
rs_allow_external_dir: false
|
rs_allow_external_dir: false
|
||||||
|
|
||||||
|
# Expose metrics for monitoring via Prometheus
|
||||||
|
rs_allow_metrics: true
|
||||||
|
|
||||||
# Allow to create tasks owned by task manager (security risk)
|
# Allow to create tasks owned by task manager (security risk)
|
||||||
rs_allow_task_manager: false
|
rs_allow_task_manager: false
|
||||||
|
|
||||||
|
@ -93,6 +96,9 @@ rs_keep_rawhide_latest: 3
|
||||||
# Repo used to install chroot for vmcores
|
# Repo used to install chroot for vmcores
|
||||||
rs_kernel_chroot_repo: http://dl.fedoraproject.org/pub/fedora/linux/releases/16/Everything/$ARCH/os/
|
rs_kernel_chroot_repo: http://dl.fedoraproject.org/pub/fedora/linux/releases/16/Everything/$ARCH/os/
|
||||||
|
|
||||||
|
# Path to the kernel (vmcore) debugger
|
||||||
|
rs_kernel_debugger_path: /usr/bin/crash
|
||||||
|
|
||||||
# Koji directory structure can be used to search for kernel debuginfo
|
# Koji directory structure can be used to search for kernel debuginfo
|
||||||
rs_koji_root: /mnt/koji
|
rs_koji_root: /mnt/koji
|
||||||
|
|
||||||
|
@ -128,8 +134,9 @@ rs_use_faf_packages: false
|
||||||
# Spool directory for FAF packages
|
# Spool directory for FAF packages
|
||||||
faf_spool_dir: /var/spool/faf
|
faf_spool_dir: /var/spool/faf
|
||||||
|
|
||||||
# Run the retrace in a Mock chroot (default), or a Podman container
|
# Run the retrace in a Mock chroot (default), a Podman container,
|
||||||
# (mock|podman)
|
# or on the native machine.
|
||||||
|
# (mock|podman|native)
|
||||||
rs_retrace_environment: podman
|
rs_retrace_environment: podman
|
||||||
|
|
||||||
# Whether to enable e-mail notifications
|
# Whether to enable e-mail notifications
|
||||||
|
@ -183,13 +190,6 @@ rs_force_reinstall: false
|
||||||
# Check server health after installation
|
# Check server health after installation
|
||||||
rs_check_health: true
|
rs_check_health: true
|
||||||
|
|
||||||
# Path to the executable hook scripts
|
|
||||||
# https://github.com/abrt/retrace-server/wiki/Hook-scripts
|
|
||||||
rs_hooks_executable_path: /usr/libexec/retrace-server/hooks/
|
|
||||||
|
|
||||||
# Global time limit for hook scripts (in seconds)
|
|
||||||
rs_hooks_global_timeout: 300
|
|
||||||
|
|
||||||
# Hostname
|
# Hostname
|
||||||
hostname: example.org
|
hostname: example.org
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
install_date: Fri Mar 27 19:49:44 2020
|
install_date: Thu May 27 08:27:12 2021
|
||||||
version: master
|
version: master
|
||||||
|
|
|
@ -1,19 +1,18 @@
|
||||||
---
|
---
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
author: sorki
|
author: sorki
|
||||||
description: Deploy retrace-server
|
description: Retrace Server deployment
|
||||||
license: BSD
|
license: BSD
|
||||||
min_ansible_version: 1.9
|
min_ansible_version: 2.8
|
||||||
platforms:
|
platforms:
|
||||||
- name: EL
|
- name: EL
|
||||||
versions:
|
versions:
|
||||||
- 7
|
- 7
|
||||||
|
- 8
|
||||||
- name: Fedora
|
- name: Fedora
|
||||||
versions:
|
versions:
|
||||||
- 26
|
- 33
|
||||||
- 27
|
- 34
|
||||||
- 28
|
- 35
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- system
|
- system
|
||||||
#dependencies:
|
|
||||||
# - { role: httpd }
|
|
||||||
|
|
|
@ -3,16 +3,19 @@
|
||||||
template:
|
template:
|
||||||
src: etc-retrace-server.conf.j2
|
src: etc-retrace-server.conf.j2
|
||||||
dest: /etc/retrace-server/retrace-server.conf
|
dest: /etc/retrace-server/retrace-server.conf
|
||||||
|
mode: 0644
|
||||||
notify: restart httpd
|
notify: restart httpd
|
||||||
|
|
||||||
- name: retrace-server http config
|
- name: retrace-server http config
|
||||||
template:
|
template:
|
||||||
src: retrace-server-httpd.conf.j2
|
src: retrace-server-httpd.conf.j2
|
||||||
dest: /etc/httpd/conf.d/retrace-server-httpd.conf
|
dest: /etc/httpd/conf.d/retrace-server-httpd.conf
|
||||||
|
mode: 0644
|
||||||
notify: restart httpd
|
notify: restart httpd
|
||||||
|
|
||||||
- name: configure retrace-server hooks config
|
- name: configure retrace-server hooks config
|
||||||
template:
|
template:
|
||||||
src: etc-retrace-server-hooks.conf.j2
|
src: etc-retrace-server-hooks.conf.j2
|
||||||
dest: /etc/retrace-server/retrace-server-hooks.conf
|
dest: /etc/retrace-server/retrace-server-hooks.conf
|
||||||
|
mode: 0644
|
||||||
notify: restart httpd
|
notify: restart httpd
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
- name: Install podman package
|
- name: Install Podman package
|
||||||
package:
|
package:
|
||||||
name: podman
|
name: podman
|
||||||
state: present
|
state: present
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
|
|
||||||
when: '"retrace" not in retrace_subgid.stdout'
|
when: '"retrace" not in retrace_subgid.stdout'
|
||||||
|
|
||||||
- name: Start httpd afterretrace user modification
|
- name: Start httpd after retrace user modification
|
||||||
service:
|
service:
|
||||||
name: httpd
|
name: httpd
|
||||||
state: started
|
state: started
|
||||||
|
|
|
@ -21,6 +21,9 @@ AllowInteractive = {{ rs_allow_interactive|int }}
|
||||||
# Allow X-CoreFileDirectory header
|
# Allow X-CoreFileDirectory header
|
||||||
AllowExternalDir = {{ rs_allow_external_dir|int }}
|
AllowExternalDir = {{ rs_allow_external_dir|int }}
|
||||||
|
|
||||||
|
# Expose metrics for monitoring via Prometheus
|
||||||
|
AllowMetrics = {{ rs_allow_metrics|int }}
|
||||||
|
|
||||||
# Allow to create tasks owned by task manager (security risk)
|
# Allow to create tasks owned by task manager (security risk)
|
||||||
AllowTaskManager = {{ rs_allow_task_manager|int }}
|
AllowTaskManager = {{ rs_allow_task_manager|int }}
|
||||||
|
|
||||||
|
@ -135,8 +138,9 @@ UseFafPackages = {{ rs_use_faf_packages|int }}
|
||||||
# Spool directory for FAF packages
|
# Spool directory for FAF packages
|
||||||
FafLinkDir = {{ faf_spool_dir }}
|
FafLinkDir = {{ faf_spool_dir }}
|
||||||
|
|
||||||
# Run the retrace in a Mock chroot (default), or a Podman container
|
# Run the retrace in a Mock chroot (default), a Podman container,
|
||||||
# (mock|podman)
|
# or on the native machine.
|
||||||
|
# (mock|podman|native)
|
||||||
RetraceEnvironment = {{ rs_retrace_environment }}
|
RetraceEnvironment = {{ rs_retrace_environment }}
|
||||||
|
|
||||||
# Whether to enable e-mail notifications
|
# Whether to enable e-mail notifications
|
||||||
|
@ -172,6 +176,9 @@ BugzillaRegExes = {{ rs_bugzilla_regexes }}
|
||||||
# Timeout (in seconds) for communication with any process
|
# Timeout (in seconds) for communication with any process
|
||||||
ProcessCommunicateTimeout = {{ rs_process_communicate_timeout|int }}
|
ProcessCommunicateTimeout = {{ rs_process_communicate_timeout|int }}
|
||||||
|
|
||||||
|
# Path to the kernel (vmcore) debugger
|
||||||
|
KernelDebuggerPath = {{ rs_kernel_debugger_path }}
|
||||||
|
|
||||||
[archhosts]
|
[archhosts]
|
||||||
{% for a in rs_archhosts %}
|
{% for a in rs_archhosts %}
|
||||||
{{ a.arch }} = {{ a.url|default('', true) }}
|
{{ a.arch }} = {{ a.url|default('', true) }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue