mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
2cc72c2213
* Pacman: Add support for setting install reason
* Improved description
* Fix documentation
* Add changelog fragment
* Use source for installation
* Get all reasons at once
* Removed default for reason
* Added version info to documentation
* Fix NameError
* Moved determination of reason to _build_inventory
* Fix duplication and sanity errors
* adjust tests for changed inventory
* Documentation: remove empty default for reason
* mention packages with changed reason in exit params/info
* Added integration tests for reason and reason_for
Inspired by the integration tests for url packages
* Correct indentation
* Fix indentation
* Also sort changed packages in normal mode
* Also sort result in unit test
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 9f3841703f
)
Co-authored-by: Minei3oat <Minei3oat@users.noreply.github.com>
15 lines
592 B
YAML
15 lines
592 B
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- when: ansible_os_family == 'Archlinux'
|
|
block:
|
|
# Add more tests here by including more task files:
|
|
- include: 'basic.yml'
|
|
- include: 'package_urls.yml'
|
|
- include: 'remove_nosave.yml'
|
|
- include: 'update_cache.yml'
|
|
- include: 'locally_installed_package.yml'
|
|
- include: 'reason.yml'
|