Fix yum installroot test releasever lookup.
With this change the tests will pass on a RHEL 7.3 AMI.
This commit is contained in:
parent
0d48732e7e
commit
3cfbc17dc6
1 changed files with 5 additions and 1 deletions
|
@ -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…
Reference in a new issue