Fix yum installroot test releasever lookup.

With this change the tests will pass on a RHEL 7.3 AMI.
This commit is contained in:
Matt Clay 2017-07-07 13:02:11 -07:00
parent 0d48732e7e
commit 3cfbc17dc6

View file

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