mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-10 14:45:28 +01:00
19 lines
718 B
YAML
19 lines
718 B
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- name: Set pkg_mgr and ansible_pkg_mgr on FreeBSD
|
|
ansible.builtin.set_fact:
|
|
pkg_mgr: community.general.pkgng
|
|
ansible_pkg_mgr: community.general.pkgng
|
|
cacheable: true
|
|
when: ansible_os_family == "FreeBSD"
|
|
|
|
- name: Set pkg_mgr and ansible_pkg_mgr on Suse
|
|
ansible.builtin.set_fact:
|
|
pkg_mgr: community.general.zypper
|
|
ansible_pkg_mgr: community.general.zypper
|
|
cacheable: true
|
|
when: ansible_os_family == "Suse"
|