mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 01:03:09 +00:00
Fix yum installroot test releasever lookup.
With this change the tests will pass on a RHEL 7.3 AMI.
This commit is contained in:
@@ -21,9 +21,13 @@
|
||||
state: directory
|
||||
mode: 0755
|
||||
|
||||
- name: get yum releasever
|
||||
shell: python -c 'import yum; yb = yum.YumBase(); print(yb.conf.yumvar["releasever"])' | tail -n 1
|
||||
register: releasever
|
||||
|
||||
- name: Populate directory
|
||||
copy:
|
||||
content: "{{ ansible_distribution_major_version }}\n"
|
||||
content: "{{ releasever.stdout }}\n"
|
||||
dest: "/{{ yumroot.stdout }}/etc/yum/vars/releasever"
|
||||
|
||||
# This will drag in > 200 MB.
|
||||
|
||||
Reference in New Issue
Block a user