mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 02:30:32 -07:00
* Adding the list-option for reading the registered repodata * adding a parameter list * if the parameter is set, return the output (as a dictionary) * adjusting the documentation for the new parameter * Adding changelot-fragment and link to the issue in the issue-tracker https://github.com/ansible-collections/community.general/issues/8777 * Adding description and example for the new list parameter * Adding type for new parameter list to argument_spec * Revert "Adding type for new parameter list to argument_spec" This reverts commit 6b86e8ba447a9b53e434c79d33c7fe260485b342. * Revert "Adding description and example for the new list parameter" This reverts commit db06dafb958f6aeffa38adeee85623904b26bbb1. * Adding a new module for reading the list of regiestered repositories I created a new module for reading the repositories based on a sub-procedure from the existing zypper_repository * Removing the changes to module zypper_repository because the list-option is not supposed to go into this module * removing the last change from the zypper_repository module * Fixing linter errors Adding extra lines before definitions adding the missing dash in the documentation removing the unused imports * Adding maintainer under BOTMETA, adding test and fixing suggestions I added the maintainer to BOTMETA I applied the suggestions on the code form the review I added a test for the new module to the existing zypper_repository-tests * Adding maintainer under BOTMETA, adding test and fixing suggestions I added the maintainer to BOTMETA I applied the suggestions on the code form the review I added a test for the new module to the existing zypper_repository-tests * Deleting the fragment because this will be created automatically I deleted the fragment because this will be created automatically based on the short_description and version_added * removing foreign commits from history that accidentily sneaked in with the last rebase * Update plugins/modules/zypper_repository_info.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update .github/BOTMETA.yml Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/zypper_repository_info.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/zypper_repository_info.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/zypper_repository_info.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/zypper_repository_info.py Co-authored-by: Felix Fontein <felix@fontein.de> * removing irrelevant return fields from the sample * Quoting the line with the colon * fixing syntax errors in sam * removing duplicate Note section * Removing newline on sample-code * Update version_added to 9.5.0 Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> * Update description (notespelling) Co-authored-by: Felix Fontein <felix@fontein.de> * Update .github/BOTMETA.yml Co-authored-by: Felix Fontein <felix@fontein.de> * Update descriptino (notespelling URL) Co-authored-by: Felix Fontein <felix@fontein.de> * use module_utils.deps to include the parseString/parseXML module * clean up module and botmeta cleanup: * remove duplicate entry from botmeta * move imports below DOCUMENTATION * remove unused imports * add required key 'returned' * moving import and fixing syntax In this documentation example the return type is dict instead of dictionary: https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#return-block Also the from __future__ import should be at the beginning of the file, according to lint * Enabling check-mode because the module doesn't change anything anyways * indicate empty dictionary Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> * Update version_added Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> --------- Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
48 lines
No EOL
1.3 KiB
YAML
48 lines
No EOL
1.3 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: collect repo configuration before test
|
|
shell: "grep . /etc/zypp/repos.d/*"
|
|
register: before
|
|
|
|
- name: ensure zypper ref works
|
|
command: zypper -n ref
|
|
|
|
- block:
|
|
- include_tasks: 'zypper_repository.yml'
|
|
always:
|
|
- name: remove repositories added during test
|
|
community.general.zypper_repository:
|
|
name: "{{item}}"
|
|
state: absent
|
|
with_items:
|
|
- chrome1
|
|
- chrome2
|
|
- test
|
|
- testrefresh
|
|
- testprio
|
|
- Apache_PHP_Modules
|
|
- systemsmanagement_Uyuni_Stable
|
|
- systemsmanagement_Uyuni_Utils
|
|
|
|
- name: collect repo configuration after test
|
|
shell: "grep . /etc/zypp/repos.d/*"
|
|
register: after
|
|
|
|
- name: verify repo configuration has been restored
|
|
assert:
|
|
that:
|
|
- before.stdout == after.stdout
|
|
|
|
- name: ensure zypper ref still works
|
|
command: zypper -n ref
|
|
|
|
- block:
|
|
- include_tasks: 'zypper_repository.yml'
|
|
always:
|
|
- name: remove repositories added during test
|
|
community.general.zypper_repository:
|
|
name: "test"
|
|
state: absent |