Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python3-ara | Distribution: openSUSE Tumbleweed |
Version: 1.7.3 | Vendor: openSUSE |
Release: 1.1 | Build date: Wed Sep 10 08:12:09 2025 |
Group: Unspecified | Build host: reproducible |
Size: 1484788 | Source RPM: python-ara-1.7.3-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://codeberg.org/ansible-community/ara | |
Summary: ARA Records Ansible |
ARA saves playbook results to a local or remote database by using an Ansible callback plugin and provides an API to integrate this data in tools and interfaces.
GPL-3.0-or-later
* Wed Sep 10 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> - Update to 1.7.3 * Added tzdata/zoneinfo to server requirements for compatibility across versions of python and django * Bumped the minimum version of django LTS from 3.2 to 4.2 (up to 5.2) * Added an auto refresh arrow at the top right, allowing automatic refreshes of the pages at the selected duration * Clicking on the number of hosts for a playbook on the playbooks page should now correctly display the results for each host of that playbook * Avoid using ARA_API_USERNAME and ARA_API_PASSWORD if they are set to empty values * Added support for specifying 'all' to ARA_IGNORED_FACTS to prevent ara from recording any host facts * New action plugin: ara_label * Completed migration from GitHub to Codeberg (links, CI jobs, etc.) * Bumped CI and container images to Fedora 41 * Bumped CI to the latest versions of ansible (11) and ansible-core (2.18) * Stop using sphinx's get_html_theme_path since it's been deprecated * Updated contributor documentation to mention Codeberg * Included a high level overview of how CI jobs work and what they do * There are no known migrations, deprecations or backwards-incompatible changes in this release. * ara 1.7.3 is expected to be the last release supporting python3.8. * Tue Aug 05 2025 Daniel Garcia <daniel.garcia@suse.com> - Update URL to use the new one from codeberg - Add missing test requirement python-ruamel.yaml * Mon Jun 16 2025 Markéta Machová <mmachova@suse.com> - Convert to libalternatives * Fri Jun 13 2025 Steve Kowalik <steven.kowalik@suse.com> - Switch to pyproject macros. * Mon Nov 25 2024 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> - Update to 1.7.2 * When recording diffs, properly format and display the "prepared" key for the modules that use it (apt, git, cli_config and others) * Sorting task results by duration when browsing playbook results works once again * Updated bootstrap css from 5.3.0 to 5.3.3 * Catch SIGINT and SIGTERM signals resulting in the interruption of playbooks to set the status of the playbook to "expired" instead of keeping it running forever unless expired with `ara playbook expire` from the CLI. * Add support for UTF-8 encoded usernames and passwords * Add .readthedocs.yaml to fix broken documentation builds * Formally include ara as a dependency in order to include --help commands in the docs * Added an introduction page * Made dependency on ruamel.yaml explicit rather than implicit * Update usage of logging.warn to logging.warning for python 3.13 * Updated versions of Ansible tested in CI to Ansible 10 and ansible-core 2.17 * Wed Apr 03 2024 Markéta Machová <mmachova@suse.com> - Update to 1.7.1 * Address deprecation of yaml.dump in ruamel.yaml when generating the default server settings.yaml file (#524) * Don't use setuptools/pkg_resources to retrieve the version of ara since it is not always installed by default. * Sat Nov 25 2023 Dirk Müller <dmueller@suse.com> - update to 1.7.0: * Update bootstrap CSS from 4.6.0 to 5.3.0 and fix broken layout and components as a result of the update * Removed separate light/dark themes via bootstrap-darkly and bootstrap-flatly: bootstrap 5.3 features a new built-in dark theme * Re-worked the dark/light theme selection to match the new bootstrap built-in dark theme including pygments highlighting for pretty-printed output * Removed jquery, it is no longer required with bootstrap * Re-worked implementation of file line highlighting since it relied on jquery * Fixed tooltip implementation (i.e, for task tags) since the implementation in bootstrap had changed * Large chunks of templating were moved out to partials/tables and partials/search in order to improve readability. * Round of template cleanups and fixes as reported by djlint * Will continue to be a work in progress to simplify and standardize templates. * Raised the requirement on django from >=3.2,<3.3 to >=3.2,<4.3 to allow installation with the latest LTS release of django. * Raised the requirement on python from >=3.6 to >=3.8 to accomodate django 4.2. * Ignored Django warning about the lack of a STATIC_ROOT directory. ara uses whitenoise for serving static files which makes the warning superfluous. (#492) * Tue Jul 18 2023 Matej Cepl <mcepl@suse.com> - Update to 1.6.1 (2022-12-12): - callback: Changed how ANSIBLE_TMP is found to work around a behavior change in ansible-core 2.14 that ended up creating a directory named {{ ANSIBLE_HOME ~ " - Added a mysql extra to the python packaging for installing the mysqlclient library. This is in addition to the existing server and postgresql extra. They are used like this: pip install ara[server,mysql,postgresql] - Update 1.6.0 (2022-12-01): It features a new "tasks" page to browse and search for tasks across playbook runs as well as many updates, fixes and improvements. - UI - Added a new "Tasks" page similar to the existing pages for Playbooks and Hosts. It provides a browseable and searchable overview of tasks across playbook runs. - Refreshed the host index page: - Added a column as well as search arguments for playbook name (or path) - Replaced the playbook status by a concise summary of task status for the host - Updated the playbook summary card to include the playbook id, the version of ara as well as the version of python. - Re-ordered and resized columns in tables to optimize width and improve consistency - Resized and aligned fields in search forms to use the full width available - Improved how task tags are displayed - Updated HTML page titles to be consistent across pages - Replaced fields for searching by task ID and host ID by task name and host name - Truncate name fields to prevent exceedinly large names to distort entire tables - Corrected card header font sizes in the host report page - callback plugin - Added support for recording the user who ran the playbook - Added support for recording the version of ara as well as the version of python used when running the playbook - Added options ARA_RECORD_USER and ARA_RECORD_CONTROLLER that can be set to false to avoid recording the user and controller hostname - Added support for specifying a SSL key, certificate and certificate authority for authenticating with a remote ara API server using ARA_API_KEY, ARA_API_CERT and ARA_API_CA respectively. - Fixed host fact recording to ensure it works when using FQCN-style tasks (ex: setup & ansible.builtin.setup) - Increased reliability and accuracy when recording results that can arrive out of order when using multi-threading or the free strategy by using the task uuid provided by Ansible - Truncate playbook, play, host and label names in circumstances where their length exceeds 255 characters - Ignore and don't record files in ~/.ansible/tmp by default - API Server - Bumped django requirement from 2.2 LTS to 3.2 LTS and removed the pin on the version of psycopg2 accordingly - Added a new configuration option, ARA_BASE_PATH, to let the server listen on an alternate path. It will continue to default to "/" but it could, for example, be set to "/ara/". - Lifted requirement on tzlocal, improve timezone detection and mitigate when the timezone can't be found by defaulting to UTC - Several new database model and API fields: - Added client_version and server_version fields to playbooks, meant to represent the version of the ara callback and server used in recording the playbook - Added python_version field to playbooks to save the version of python used by Ansible and the callback plugin when recording a playbook - Added a new "failed" status for tasks that is used by the callback plugin when there is at least one failed result for a given task - Added a new "uuid" field for tasks which is the uuid provided by Ansible for a task. It is used by the callback plugin to increase the reliability and accuracy when recording results even if they arrive out of order. - Several fixes and improvements for the distributed sqlite database backend: - Added a new index page for listing and linking to available databases. This is a work in progress that is intended to be improved in the future. - Return a HTTP 405 error when trying to write to read-only endpoints - Fixed the /healthcheck/ endpoint to make sure it is routed properly - Improved database engine settings and WSGI application configuration The WSGI application should now always be "ara.server.wsgi" instead of needing to specify "ara.server.wsgi.distributed_sqlite" - API client - Added support for specifying a SSL key, certificate and certificate authority for authenticating with a remote ara API server - Remove InsecureRequestWarning for insecure requests when SSL verification is not enabled. - CLI - Fixed wrong parsing of durations longer than 24 hours - Added support for searching playbooks by user - Added support for specifying a SSL key, certificate and certificate authority for authenticating with a remote ara API server using ARA_API_KEY, ARA_API_CERT and ARA_API_CA respectively. - Docs - Refreshed and improved the README, reformatted it from rst to markdown - Added a CONTRIBUTING.md file and refreshed contribution documentation - Explicitly call out and recommend setting up authentication for production use in order to prevent leaking sensitive information - Improved troubleshooting documentation and tips to improve playbook recording performance * Wed Jul 12 2023 Matej Cepl <mcepl@suse.com> - Clean up the SPEC file. * Thu Aug 04 2022 Otto Hollmann <otto.hollmann@suse.com> - Update to 1.5.8: Callback plugin - -------------- - Improved debug logging to include some hooks that were missing (#374) - Added a localhost_to_hostname toggle in the callback (#336) This adds two configuration parameters to the callback: - ARA_LOCALHOST_AS_HOSTNAME - ARA_LOCALHOST_AS_HOSTNAME_FORMAT These are useful in use cases where playbooks are run against localhost, whether directly (with ansible-playbook) or indirectly (via ansible-pull). When enabled, ara will save results under the hostname (or fqdn) of 'localhost' instead of associating every result to localhost. This is meant to make it easier to distinguish results between different hosts even though the playbooks may have all run against 'localhost'. Server - ----- - Added a setting for CSRF_TRUSTED_ORIGINS (#345) - Fixed logging configuration to avoid conflicting with ansible (#367) See upgrade notes for changes to the server's settings.yaml. UI - - - API browser: disable forms to improve performance (#323) - Include the version of ara when generating static reports (#318) - Add a column in task results for displaying the task's tags (#281,#375) CLI - -- - Added "--latest" to "ara host list" to show only the latest playbook (#327) Docs - --- - Refreshed authentication docs and recommend using EXTERNAL_AUTH with nginx or apache in front (#319) - Add database and authentication tips to troubleshooting (#355) Packaging and dependencies - ------------------------- - API Server container images have been bumped to fedora35 and centos8-stream - Updated setup.cfg to fix a deprecation warning for python 3.10 (#371) - Fixed distutils.sysconfig deprecation warning on python 3.10 (#369) - Fixed dynaconf deprecation warning when loading settings (#369) - psycopg2 has been pinned to <2.9 due to incompatibility with django 2.2 (#321,#326) - dynaconf has been pinned to <3.0 when using python3.5 (#372) dynaconf>=3.0 supports python>=3.6. Misc - --- - General CI maintenance - Updated Zuul to test the latest versions of ansible and ansible-core - Re-enabled container image updates on DockerHub and Quay.io - Added an example script with ansible-runner (#343) Upgrade notes - ------------ - There have been fixes to logging which requires changes to the server's settings.yaml or LOGGING configuration. (#367) A warning will be printed if the configuration file must be updated and it can be updated manually or by generating a new configuration file. - ara 1.5.8 is the last release that will support python3.5. Python 3.5 reached the end of its life on September 13th, 2020. An upcoming release will update the version of django to the next LTS (2.2 to 3.2) which will bump the requirement to python>=3.6.
/usr/bin/ara /usr/bin/ara-3.13 /usr/bin/ara-manage /usr/bin/ara-manage-3.13 /usr/lib/python3.13/site-packages/ara /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/INSTALLER /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/METADATA /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/RECORD /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/REQUESTED /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/WHEEL /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/entry_points.txt /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/licenses /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/licenses/LICENSE /usr/lib/python3.13/site-packages/ara-1.7.3.dist-info/top_level.txt /usr/lib/python3.13/site-packages/ara/api /usr/lib/python3.13/site-packages/ara/api/__init__.py /usr/lib/python3.13/site-packages/ara/api/__pycache__ /usr/lib/python3.13/site-packages/ara/api/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/admin.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/admin.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/apps.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/apps.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/auth.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/auth.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/fields.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/fields.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/filters.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/filters.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/models.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/models.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/renderers.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/renderers.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/serializers.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/serializers.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/urls.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/urls.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/views.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/__pycache__/views.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/admin.py /usr/lib/python3.13/site-packages/ara/api/apps.py /usr/lib/python3.13/site-packages/ara/api/auth.py /usr/lib/python3.13/site-packages/ara/api/fields.py /usr/lib/python3.13/site-packages/ara/api/filters.py /usr/lib/python3.13/site-packages/ara/api/management /usr/lib/python3.13/site-packages/ara/api/management/commands /usr/lib/python3.13/site-packages/ara/api/management/commands/__pycache__ /usr/lib/python3.13/site-packages/ara/api/management/commands/__pycache__/prune.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/management/commands/__pycache__/prune.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/management/commands/prune.py /usr/lib/python3.13/site-packages/ara/api/migrations /usr/lib/python3.13/site-packages/ara/api/migrations/0001_initial.py /usr/lib/python3.13/site-packages/ara/api/migrations/0002_remove_host_alias.py /usr/lib/python3.13/site-packages/ara/api/migrations/0003_add_missing_result_properties.py /usr/lib/python3.13/site-packages/ara/api/migrations/0004_duration_in_database.py /usr/lib/python3.13/site-packages/ara/api/migrations/0005_unique_label_names.py /usr/lib/python3.13/site-packages/ara/api/migrations/0006_remove_result_statuses.py /usr/lib/python3.13/site-packages/ara/api/migrations/0007_add_expired_status.py /usr/lib/python3.13/site-packages/ara/api/migrations/0008_playbook_controller.py /usr/lib/python3.13/site-packages/ara/api/migrations/0009_latesthost.py /usr/lib/python3.13/site-packages/ara/api/migrations/0010_result_delegated_to.py /usr/lib/python3.13/site-packages/ara/api/migrations/0011_play_label_name_max_length.py /usr/lib/python3.13/site-packages/ara/api/migrations/0012_playbook_user.py /usr/lib/python3.13/site-packages/ara/api/migrations/0013_task_status.py /usr/lib/python3.13/site-packages/ara/api/migrations/0014_ara_versions.py /usr/lib/python3.13/site-packages/ara/api/migrations/0015_task_uuid.py /usr/lib/python3.13/site-packages/ara/api/migrations/0016_revert_play_label_name_length.py /usr/lib/python3.13/site-packages/ara/api/migrations/0017_optional_playbook_controller.py /usr/lib/python3.13/site-packages/ara/api/migrations/__init__.py /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__ /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0001_initial.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0001_initial.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0002_remove_host_alias.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0002_remove_host_alias.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0003_add_missing_result_properties.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0003_add_missing_result_properties.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0004_duration_in_database.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0004_duration_in_database.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0005_unique_label_names.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0005_unique_label_names.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0006_remove_result_statuses.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0006_remove_result_statuses.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0007_add_expired_status.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0007_add_expired_status.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0008_playbook_controller.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0008_playbook_controller.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0009_latesthost.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0009_latesthost.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0010_result_delegated_to.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0010_result_delegated_to.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0011_play_label_name_max_length.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0011_play_label_name_max_length.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0012_playbook_user.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0012_playbook_user.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0013_task_status.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0013_task_status.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0014_ara_versions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0014_ara_versions.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0015_task_uuid.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0015_task_uuid.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0016_revert_play_label_name_length.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0016_revert_play_label_name_length.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0017_optional_playbook_controller.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/0017_optional_playbook_controller.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/migrations/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/models.py /usr/lib/python3.13/site-packages/ara/api/renderers.py /usr/lib/python3.13/site-packages/ara/api/serializers.py /usr/lib/python3.13/site-packages/ara/api/tests /usr/lib/python3.13/site-packages/ara/api/tests/__init__.py /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__ /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/factories.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/factories.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_auth.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_auth.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_file.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_file.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_file_content.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_file_content.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_host.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_host.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_label.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_label.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_latesthost.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_latesthost.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_play.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_play.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_playbook.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_playbook.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_prune.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_prune.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_records.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_records.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_result.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_result.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_task.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_task.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/tests_utils.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/api/tests/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/api/tests/factories.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_auth.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_file.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_file_content.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_host.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_label.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_latesthost.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_play.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_playbook.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_prune.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_records.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_result.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_task.py /usr/lib/python3.13/site-packages/ara/api/tests/tests_utils.py /usr/lib/python3.13/site-packages/ara/api/tests/utils.py /usr/lib/python3.13/site-packages/ara/api/urls.py /usr/lib/python3.13/site-packages/ara/api/views.py /usr/lib/python3.13/site-packages/ara/cli /usr/lib/python3.13/site-packages/ara/cli/__init__.py /usr/lib/python3.13/site-packages/ara/cli/__pycache__ /usr/lib/python3.13/site-packages/ara/cli/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/base.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/base.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/expire.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/expire.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/host.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/host.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/play.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/play.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/playbook.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/playbook.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/record.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/record.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/result.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/result.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/task.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/task.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/cli/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/cli/base.py /usr/lib/python3.13/site-packages/ara/cli/expire.py /usr/lib/python3.13/site-packages/ara/cli/host.py /usr/lib/python3.13/site-packages/ara/cli/play.py /usr/lib/python3.13/site-packages/ara/cli/playbook.py /usr/lib/python3.13/site-packages/ara/cli/record.py /usr/lib/python3.13/site-packages/ara/cli/result.py /usr/lib/python3.13/site-packages/ara/cli/task.py /usr/lib/python3.13/site-packages/ara/cli/utils.py /usr/lib/python3.13/site-packages/ara/clients /usr/lib/python3.13/site-packages/ara/clients/__init__.py /usr/lib/python3.13/site-packages/ara/clients/__pycache__ /usr/lib/python3.13/site-packages/ara/clients/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/clients/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/clients/__pycache__/http.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/clients/__pycache__/http.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/clients/__pycache__/offline.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/clients/__pycache__/offline.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/clients/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/clients/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/clients/http.py /usr/lib/python3.13/site-packages/ara/clients/offline.py /usr/lib/python3.13/site-packages/ara/clients/utils.py /usr/lib/python3.13/site-packages/ara/plugins /usr/lib/python3.13/site-packages/ara/plugins/action /usr/lib/python3.13/site-packages/ara/plugins/action/__pycache__ /usr/lib/python3.13/site-packages/ara/plugins/action/__pycache__/ara_label.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/plugins/action/__pycache__/ara_label.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/plugins/action/__pycache__/ara_playbook.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/plugins/action/__pycache__/ara_playbook.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/plugins/action/__pycache__/ara_record.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/plugins/action/__pycache__/ara_record.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/plugins/action/ara_label.py /usr/lib/python3.13/site-packages/ara/plugins/action/ara_playbook.py /usr/lib/python3.13/site-packages/ara/plugins/action/ara_record.py /usr/lib/python3.13/site-packages/ara/plugins/callback /usr/lib/python3.13/site-packages/ara/plugins/callback/__pycache__ /usr/lib/python3.13/site-packages/ara/plugins/callback/__pycache__/ara_default.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/plugins/callback/__pycache__/ara_default.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/plugins/callback/ara_default.py /usr/lib/python3.13/site-packages/ara/plugins/lookup /usr/lib/python3.13/site-packages/ara/plugins/lookup/__pycache__ /usr/lib/python3.13/site-packages/ara/plugins/lookup/__pycache__/ara_api.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/plugins/lookup/__pycache__/ara_api.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/plugins/lookup/ara_api.py /usr/lib/python3.13/site-packages/ara/server /usr/lib/python3.13/site-packages/ara/server/__init__.py /usr/lib/python3.13/site-packages/ara/server/__main__.py /usr/lib/python3.13/site-packages/ara/server/__pycache__ /usr/lib/python3.13/site-packages/ara/server/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/__main__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/__main__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/admin.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/admin.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/apps.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/apps.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/context_processors.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/context_processors.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/settings.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/settings.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/urls.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/urls.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/wsgi.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/__pycache__/wsgi.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/admin.py /usr/lib/python3.13/site-packages/ara/server/apps.py /usr/lib/python3.13/site-packages/ara/server/context_processors.py /usr/lib/python3.13/site-packages/ara/server/db /usr/lib/python3.13/site-packages/ara/server/db/backends /usr/lib/python3.13/site-packages/ara/server/db/backends/__init__.py /usr/lib/python3.13/site-packages/ara/server/db/backends/__pycache__ /usr/lib/python3.13/site-packages/ara/server/db/backends/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/db/backends/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite/__init__.py /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite/__pycache__ /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite/__pycache__/base.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite/__pycache__/base.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/server/db/backends/distributed_sqlite/base.py /usr/lib/python3.13/site-packages/ara/server/settings.py /usr/lib/python3.13/site-packages/ara/server/urls.py /usr/lib/python3.13/site-packages/ara/server/wsgi.py /usr/lib/python3.13/site-packages/ara/setup /usr/lib/python3.13/site-packages/ara/setup/README.rst /usr/lib/python3.13/site-packages/ara/setup/__init__.py /usr/lib/python3.13/site-packages/ara/setup/__pycache__ /usr/lib/python3.13/site-packages/ara/setup/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/action_plugins.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/action_plugins.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/ansible.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/ansible.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/callback_plugins.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/callback_plugins.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/env.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/env.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/exceptions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/exceptions.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/lookup_plugins.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/lookup_plugins.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/path.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/path.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/plugins.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/setup/__pycache__/plugins.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/setup/action_plugins.py /usr/lib/python3.13/site-packages/ara/setup/ansible.py /usr/lib/python3.13/site-packages/ara/setup/callback_plugins.py /usr/lib/python3.13/site-packages/ara/setup/env.py /usr/lib/python3.13/site-packages/ara/setup/exceptions.py /usr/lib/python3.13/site-packages/ara/setup/lookup_plugins.py /usr/lib/python3.13/site-packages/ara/setup/path.py /usr/lib/python3.13/site-packages/ara/setup/plugins.py /usr/lib/python3.13/site-packages/ara/ui /usr/lib/python3.13/site-packages/ara/ui/__init__.py /usr/lib/python3.13/site-packages/ara/ui/__pycache__ /usr/lib/python3.13/site-packages/ara/ui/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/apps.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/apps.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/forms.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/forms.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/pagination.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/pagination.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/urls.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/urls.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/views.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/__pycache__/views.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/apps.py /usr/lib/python3.13/site-packages/ara/ui/forms.py /usr/lib/python3.13/site-packages/ara/ui/management /usr/lib/python3.13/site-packages/ara/ui/management/commands /usr/lib/python3.13/site-packages/ara/ui/management/commands/__pycache__ /usr/lib/python3.13/site-packages/ara/ui/management/commands/__pycache__/generate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/management/commands/__pycache__/generate.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/management/commands/generate.py /usr/lib/python3.13/site-packages/ara/ui/pagination.py /usr/lib/python3.13/site-packages/ara/ui/static /usr/lib/python3.13/site-packages/ara/ui/static/README.rst /usr/lib/python3.13/site-packages/ara/ui/static/css /usr/lib/python3.13/site-packages/ara/ui/static/css/ara.css /usr/lib/python3.13/site-packages/ara/ui/static/css/bootstrap.min.css /usr/lib/python3.13/site-packages/ara/ui/static/css/pygments-dark.css /usr/lib/python3.13/site-packages/ara/ui/static/css/pygments-light.css /usr/lib/python3.13/site-packages/ara/ui/static/images /usr/lib/python3.13/site-packages/ara/ui/static/images/favicon.ico /usr/lib/python3.13/site-packages/ara/ui/static/images/logo.svg /usr/lib/python3.13/site-packages/ara/ui/static/js /usr/lib/python3.13/site-packages/ara/ui/static/js/auto-refresh.js /usr/lib/python3.13/site-packages/ara/ui/static/js/bootstrap.bundle.min.js /usr/lib/python3.13/site-packages/ara/ui/static/js/theme.js /usr/lib/python3.13/site-packages/ara/ui/templates /usr/lib/python3.13/site-packages/ara/ui/templates/base.html /usr/lib/python3.13/site-packages/ara/ui/templates/distributed_index.html /usr/lib/python3.13/site-packages/ara/ui/templates/file.html /usr/lib/python3.13/site-packages/ara/ui/templates/host.html /usr/lib/python3.13/site-packages/ara/ui/templates/host_index.html /usr/lib/python3.13/site-packages/ara/ui/templates/index.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials /usr/lib/python3.13/site-packages/ara/ui/templates/partials/about_modal.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/api_link.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/cli_arguments.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/host_facts_snippets.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/nested_results.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/pagination.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/playbook_card.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/playbook_files.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/playbook_records.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/playbook_status_icon.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/result_status_icon.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/search /usr/lib/python3.13/site-packages/ara/ui/templates/partials/search/host_results.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/search/hosts.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/search/playbook_task_results.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/search/playbooks.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/search/tasks.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/sort_by_date.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/sort_by_duration.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/sort_by_name.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/status_icon.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/host_facts.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/host_results.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/hosts.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/hosts_row.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/playbook_hosts.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/playbook_results.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/playbooks.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tables/tasks.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/tags_list.html /usr/lib/python3.13/site-packages/ara/ui/templates/partials/task_status_icon.html /usr/lib/python3.13/site-packages/ara/ui/templates/playbook.html /usr/lib/python3.13/site-packages/ara/ui/templates/record.html /usr/lib/python3.13/site-packages/ara/ui/templates/result.html /usr/lib/python3.13/site-packages/ara/ui/templates/robots.txt /usr/lib/python3.13/site-packages/ara/ui/templates/task_index.html /usr/lib/python3.13/site-packages/ara/ui/templatetags /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__ /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/datetime_formatting.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/datetime_formatting.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/diff_result.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/diff_result.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/pygments_highlights.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/pygments_highlights.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/static_url.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/static_url.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/strip_db.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/strip_db.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/truncatepath.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/__pycache__/truncatepath.cpython-313.pyc /usr/lib/python3.13/site-packages/ara/ui/templatetags/datetime_formatting.py /usr/lib/python3.13/site-packages/ara/ui/templatetags/diff_result.py /usr/lib/python3.13/site-packages/ara/ui/templatetags/pygments_highlights.py /usr/lib/python3.13/site-packages/ara/ui/templatetags/static_url.py /usr/lib/python3.13/site-packages/ara/ui/templatetags/strip_db.py /usr/lib/python3.13/site-packages/ara/ui/templatetags/truncatepath.py /usr/lib/python3.13/site-packages/ara/ui/urls.py /usr/lib/python3.13/site-packages/ara/ui/utils.py /usr/lib/python3.13/site-packages/ara/ui/views.py /usr/share/doc/packages/python3-ara /usr/share/doc/packages/python3-ara/README.md /usr/share/libalternatives/ara /usr/share/libalternatives/ara-manage /usr/share/libalternatives/ara-manage/313.conf /usr/share/libalternatives/ara/313.conf /usr/share/licenses/python3-ara /usr/share/licenses/python3-ara/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Sep 11 22:29:52 2025