1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-25 21:22:44 +00:00
community.general/tests/integration/targets/pipx/tasks/testcase-9009-fixglobal.yml
2025-09-13 17:29:01 +12:00

30 lines
751 B
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: 9009-Ensure application pycowsay is uninstalled
community.general.pipx:
name: pycowsay
state: absent
global: true
- name: 9009-Install application pycowsay
community.general.pipx:
name: pycowsay
global: true
register: install_pycowsay
- name: 9009-Inject packages
community.general.pipx:
state: inject
name: pycowsay
global: true
inject_packages:
- licenses
- name: 9009-Ensure application pycowsay is uninstalled
community.general.pipx:
name: pycowsay
state: absent
global: true