Fix yum install root (#19925)

* Reenable yum install root tests

No need for sos to test installroot.  Something with less deps works
just as well.

* Fix yum installroot.

Fix module import to use fail_json when the modules aren't installed.

Remove wildcard imports

* Lsat task is supposed to remove sos so make that happen
This commit is contained in:
Toshio Kuratomi 2017-01-05 10:42:43 -08:00 committed by GitHub
commit 95df8977b6
3 changed files with 78 additions and 45 deletions

View file

@ -227,5 +227,8 @@
- "'results' in yum_result"
- name: uninstall sos
yum: name=sos installroot='/'
yum:
name: sos
installroot: '/'
state: removed
register: yum_result

View file

@ -17,44 +17,44 @@
- name: Make a necessary directory
file:
path: "/{{ yumroot.stdout }}/etc/yum/vars/"
path: "{{ yumroot.stdout }}/etc/yum/vars/"
state: directory
mode: 0755
#- name: Populate directory
# copy:
# content: "{{ ansible_lsb.major_release }}\n"
# dest: "/{{ yumroot.stdout }}/etc/yum/vars/releasever"
#
## This will drag in > 200 MB.
#- name: attempt installroot
# yum: name=sos installroot="/{{ yumroot.stdout }}/" disable_gpg_check=yes
# register: yum_result
#
#- name: check sos with rpm in installroot
# shell: rpm -q sos --root="/{{ yumroot.stdout }}/"
# failed_when: False
# register: rpm_result
#
#- debug: var=yum_result
#- debug: var=rpm_result
#
#- name: verify installation of sos
# assert:
# that:
# - "yum_result.rc == 0"
# - "yum_result.changed"
# - "rpm_result.rc == 0"
#
#- name: verify yum module outputs
# assert:
# that:
# - "'changed' in yum_result"
# - "'msg' in yum_result"
# - "'rc' in yum_result"
# - "'results' in yum_result"
#
- name: Populate directory
copy:
content: "{{ ansible_distribution_major_version }}\n"
dest: "/{{ yumroot.stdout }}/etc/yum/vars/releasever"
# This will drag in > 200 MB.
- name: attempt installroot
yum: name=zlib installroot="{{ yumroot.stdout }}/" disable_gpg_check=yes
register: yum_result
- name: check sos with rpm in installroot
shell: rpm -q zlib --root="{{ yumroot.stdout }}/"
failed_when: False
register: rpm_result
- debug: var=yum_result
- debug: var=rpm_result
- name: verify installation of sos
assert:
that:
- "yum_result.rc == 0"
- "yum_result.changed"
- "rpm_result.rc == 0"
- name: verify yum module outputs
assert:
that:
- "'changed' in yum_result"
- "'msg' in yum_result"
- "'rc' in yum_result"
- "'results' in yum_result"
- name: cleanup installroot
file:
path: "/{{ yumroot.stdout }}/"
path: "{{ yumroot.stdout }}/"
state: absent