Fix yum installroot test releasever lookup.

With this change the tests will pass on a RHEL 7.3 AMI.
pull/26549/head
Matt Clay 7 years ago
parent 0d48732e7e
commit 3cfbc17dc6

@ -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.

Loading…
Cancel
Save