Helps troubleshoot SELinux problems
Go to file
Petr Lautrbach b993728756 setroubleshoot-3.3.32-1
- Always reset pending alarms when alarm(0) (rhbz#2112573)
- 'imp' module is deprecated in favor of 'importlib' (rhbz#2224393)
- Fix build with pip 23.1.2+
- Remove dbus-glib-devel BR as it's only needed when compiled with seappletlegacy
- Rename session bus name to org.fedoraproject.sealert
- seapplet: wrap SEApplet() to try except
- util.py: Add doctext test for build_module_type_cache()
- Update translations

Resolves: RHEL-871
2023-07-27 12:45:41 +02:00
.fmf run Tier1 tests via TMT/FMF 2022-07-14 13:35:01 +02:00
plans run Tier1 tests via TMT/FMF 2022-07-14 13:35:01 +02:00
tests tests: ausearch needs --input-logs in order not to read from stdin 2022-11-24 10:44:47 +01:00
.gitignore setroubleshoot-3.3.32-1 2023-07-27 12:45:41 +02:00
0001-imp-module-is-deprecated-in-favor-of-importlib.patch setroubleshoot-3.3.32-1 2023-07-27 12:45:41 +02:00
0002-Always-reset-pending-alarms-when-alarm-0.patch setroubleshoot-3.3.32-1 2023-07-27 12:45:41 +02:00
0003-gitlab-ci-use-apt-get-to-install-python3-dbus-packag.patch setroubleshoot-3.3.32-1 2023-07-27 12:45:41 +02:00
gating.yaml Fix gating.yaml for rhel-9 product 2021-07-01 16:38:27 +02:00
README.translations Update instructions for working with translations 2022-01-13 15:39:21 +01:00
setroubleshoot.logrotate RHEL 9.0.0 Alpha bootstrap 2020-10-15 09:30:16 -07:00
setroubleshoot.spec setroubleshoot-3.3.32-1 2023-07-27 12:45:41 +02:00
setroubleshoot.sysusers Use %sysusers_create_compat instead of useradd 2022-02-08 17:13:47 +01:00
setroubleshoot.tmpfiles Set right ownership on /var/lib/setroubleshoot 2022-02-08 17:13:36 +01:00
sources setroubleshoot-3.3.32-1 2023-07-27 12:45:41 +02:00

Setroubleshoot translations currently live in the following locations:

- https://translate.fedoraproject.org/projects/setroubleshoot/
  - contains translations for both stable (rhel8) and main (Fedora) branches
  - maintains large number of languages (several of which do not actually contain any translated strings)
  - updated by community and partially by RH localization effort

- setroubleshoot source repositories
  - https://gitlab.com/setroubleshoot
    - used for development
    - separate repos for plugins and framework
  - https://pagure.io/setroubleshoot and https://github.com/fedora-selinux/setroubleshoot
    - no longer updated
    - plugins and framework in the same repo

How to update source files on weblate:
  # install dependencies
  $ sudo dnf install automake autoconf inittool gettext glib2-devel dbus-devel libnotify-devel gtk3-devel audit-libs-devel
  $ git clone git@gitlab.com:setroubleshoot/framework.git
  $ git clone git@gitlab.com:setroubleshoot/plugins.git
  $ cd framework
  # Update Makefile
  $ ./autogen.sh
  # generate new potfile
  $ cd po
  $ make setroubleshoot.pot
  # https://translate.fedoraproject.org/projects/setroubleshoot/setroubleshoot/en/
  # Files -> Upload translations
  # Repeat the process for plugins
  # https://translate.fedoraproject.org/projects/setroubleshoot/plugins/en/
  # Files -> Upload translations
  # or use weblate command line tool:
  $ wlc --key <API key> --url https://translate.fedoraproject.org/api/ upload --input framework/po/setroubleshoot.pot setroubleshoot/setroubleshoot/en
  $ wlc --key <API key> --url https://translate.fedoraproject.org/api/ upload --input plugins/po/setroubleshoot.pot setroubleshoot/plugins/en/

How to pull new translations from weblate
  $ git clone git@gitlab.com:setroubleshoot/framework.git
  $ git clone git@gitlab.com:setroubleshoot/plugins.git
  # https://translate.fedoraproject.org/projects/setroubleshoot/setroubleshoot
  # Files -> Download translation files as ZIP file
  # https://translate.fedoraproject.org/projects/setroubleshoot/plugins/
  # Files -> Download translation files as ZIP file
  $ unzip setroubleshoot-setroubleshoot.zip
  $ cp setroubleshoot/setroubleshoot/framework/po/*.po /framework/po
  $ unzip setroubleshoot-plugins.zip
  $ cp setroubleshoot/plugins/plugins/po/*.po /plugins/po
  # wlc doesn't support batch download yet https://github.com/WeblateOrg/wlc/issues/17