mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
731 lines
16 KiB
YAML
731 lines
16 KiB
YAML
# UNINSTALL
|
|
- name: uninstall sos
|
|
yum: name=sos state=removed
|
|
register: yum_result
|
|
|
|
- name: check sos with rpm
|
|
shell: rpm -q sos
|
|
ignore_errors: True
|
|
register: rpm_result
|
|
|
|
- name: verify uninstallation of sos
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "rpm_result is failed"
|
|
|
|
# UNINSTALL AGAIN
|
|
- name: uninstall sos again in check mode
|
|
yum: name=sos state=removed
|
|
check_mode: true
|
|
register: yum_result
|
|
|
|
- name: verify no change on re-uninstall in check mode
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
- name: uninstall sos again
|
|
yum: name=sos state=removed
|
|
register: yum_result
|
|
|
|
- name: verify no change on re-uninstall
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
# INSTALL
|
|
- name: install sos in check mode
|
|
yum: name=sos state=present
|
|
check_mode: true
|
|
register: yum_result
|
|
|
|
- name: verify installation of sos in check mode
|
|
assert:
|
|
that:
|
|
- "yum_result is changed"
|
|
|
|
- name: install sos
|
|
yum: name=sos state=present
|
|
register: yum_result
|
|
|
|
- name: verify installation of sos
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: check sos with rpm
|
|
shell: rpm -q sos
|
|
|
|
# INSTALL AGAIN
|
|
- name: install sos again in check mode
|
|
yum: name=sos state=present
|
|
check_mode: true
|
|
register: yum_result
|
|
- name: verify no change on second install in check mode
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
- name: install sos again
|
|
yum: name=sos state=present
|
|
register: yum_result
|
|
- name: verify no change on second install
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
- name: install sos again with empty string enablerepo
|
|
yum: name=sos state=present enablerepo=""
|
|
register: yum_result
|
|
- name: verify no change on third install with empty string enablerepo
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "not yum_result is changed"
|
|
|
|
|
|
# INSTALL AGAIN WITH LATEST
|
|
- name: install sos again with state latest in check mode
|
|
yum: name=sos state=latest
|
|
check_mode: true
|
|
register: yum_result
|
|
- name: verify install sos again with state latest in check mode
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
- name: install sos again with state latest idempotence
|
|
yum: name=sos state=latest
|
|
register: yum_result
|
|
- name: verify install sos again with state latest idempotence
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
# INSTALL WITH LATEST
|
|
- name: uninstall sos
|
|
yum: name=sos state=removed
|
|
register: yum_result
|
|
- name: verify uninstall sos
|
|
assert:
|
|
that:
|
|
- "yum_result is successful"
|
|
|
|
- name: copy yum.conf file in case it is missing
|
|
copy:
|
|
src: yum.conf
|
|
dest: /etc/yum.conf
|
|
force: False
|
|
register: yum_conf_copy
|
|
|
|
- block:
|
|
- name: install sos with state latest in check mode with config file param
|
|
yum: name=sos state=latest conf_file=/etc/yum.conf
|
|
check_mode: true
|
|
register: yum_result
|
|
- name: verify install sos with state latest in check mode with config file param
|
|
assert:
|
|
that:
|
|
- "yum_result is changed"
|
|
|
|
always:
|
|
- name: remove tmp yum.conf file if we created it
|
|
file:
|
|
path: /etc/yum.conf
|
|
state: absent
|
|
when: yum_conf_copy is changed
|
|
|
|
- name: install sos with state latest in check mode
|
|
yum: name=sos state=latest
|
|
check_mode: true
|
|
register: yum_result
|
|
- name: verify install sos with state latest in check mode
|
|
assert:
|
|
that:
|
|
- "yum_result is changed"
|
|
|
|
- name: install sos with state latest
|
|
yum: name=sos state=latest
|
|
register: yum_result
|
|
- name: verify install sos with state latest
|
|
assert:
|
|
that:
|
|
- "yum_result is changed"
|
|
|
|
- name: install sos with state latest idempotence
|
|
yum: name=sos state=latest
|
|
register: yum_result
|
|
- name: verify install sos with state latest idempotence
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
- name: install sos with state latest idempotence with config file param
|
|
yum: name=sos state=latest
|
|
register: yum_result
|
|
- name: verify install sos with state latest idempotence with config file param
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
|
|
# Multiple packages
|
|
- name: uninstall sos and bc
|
|
yum: name=sos,bc state=removed
|
|
|
|
- name: check sos with rpm
|
|
shell: rpm -q sos
|
|
ignore_errors: True
|
|
register: rpm_sos_result
|
|
|
|
- name: check bc with rpm
|
|
shell: rpm -q bc
|
|
ignore_errors: True
|
|
register: rpm_bc_result
|
|
|
|
- name: verify packages installed
|
|
assert:
|
|
that:
|
|
- "rpm_sos_result is failed"
|
|
- "rpm_bc_result is failed"
|
|
|
|
- name: install sos and bc as comma separated
|
|
yum: name=sos,bc state=present
|
|
register: yum_result
|
|
|
|
- name: verify packages installed
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: check sos with rpm
|
|
shell: rpm -q sos
|
|
|
|
- name: check bc with rpm
|
|
shell: rpm -q bc
|
|
|
|
- name: uninstall sos and bc
|
|
yum: name=sos,bc state=removed
|
|
register: yum_result
|
|
|
|
- name: install sos and bc as list
|
|
yum:
|
|
name:
|
|
- sos
|
|
- bc
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify packages installed
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: check sos with rpm
|
|
shell: rpm -q sos
|
|
|
|
- name: check bc with rpm
|
|
shell: rpm -q bc
|
|
|
|
- name: uninstall sos and bc
|
|
yum: name=sos,bc state=removed
|
|
register: yum_result
|
|
|
|
- name: install sos and bc as comma separated with spaces
|
|
yum:
|
|
name: "sos, bc"
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify packages installed
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: check sos with rpm
|
|
shell: rpm -q sos
|
|
|
|
- name: check bc with rpm
|
|
shell: rpm -q bc
|
|
|
|
- name: uninstall sos and bc
|
|
yum: name=sos,bc state=removed
|
|
|
|
- name: install non-existent rpm
|
|
yum: name="{{ item }}"
|
|
with_items:
|
|
- does-not-exist
|
|
register: non_existent_rpm
|
|
ignore_errors: True
|
|
|
|
- name: check non-existent rpm install failed
|
|
assert:
|
|
that:
|
|
- non_existent_rpm is failed
|
|
|
|
# Install in installroot='/'
|
|
- name: install sos
|
|
yum: name=sos state=present installroot='/'
|
|
register: yum_result
|
|
|
|
- name: verify installation of sos
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: check sos with rpm
|
|
shell: rpm -q sos --root=/
|
|
|
|
- name: uninstall sos
|
|
yum:
|
|
name: sos
|
|
installroot: '/'
|
|
state: removed
|
|
register: yum_result
|
|
|
|
- name: Test download_only
|
|
yum:
|
|
name: sos
|
|
state: latest
|
|
download_only: true
|
|
register: yum_result
|
|
|
|
- name: verify download of sos (part 1 -- yum "install" succeeded)
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: uninstall sos (noop)
|
|
yum:
|
|
name: sos
|
|
state: removed
|
|
register: yum_result
|
|
|
|
- name: verify download of sos (part 2 -- nothing removed during uninstall)
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "not yum_result is changed"
|
|
|
|
- name: uninstall sos for downloadonly/downloaddir test
|
|
yum:
|
|
name: sos
|
|
state: absent
|
|
|
|
- name: Test download_only/download_dir
|
|
yum:
|
|
name: sos
|
|
state: latest
|
|
download_only: true
|
|
download_dir: "/var/tmp/packages"
|
|
register: yum_result
|
|
|
|
- name: verify yum output
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- command: "ls /var/tmp/packages"
|
|
register: ls_out
|
|
|
|
- name: Verify specified download_dir was used
|
|
assert:
|
|
that:
|
|
- "'sos' in ls_out.stdout"
|
|
|
|
- name: install group
|
|
yum:
|
|
name: "@Development Tools"
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify installation of the group
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: install the group again
|
|
yum:
|
|
name: "@Development Tools"
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify nothing changed
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "not yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: install the group again but also with a package that is not yet installed
|
|
yum:
|
|
name:
|
|
- "@Development Tools"
|
|
- sos
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify sos is installed
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: try to install the group again, with --check to check 'changed'
|
|
yum:
|
|
name: "@Development Tools"
|
|
state: present
|
|
check_mode: yes
|
|
register: yum_result
|
|
|
|
- name: verify nothing changed
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: try to install non existing group
|
|
yum:
|
|
name: "@non-existing-group"
|
|
state: present
|
|
register: yum_result
|
|
ignore_errors: True
|
|
|
|
- name: verify installation of the non existing group failed
|
|
assert:
|
|
that:
|
|
- "yum_result is failed"
|
|
- "not yum_result is changed"
|
|
- "yum_result is failed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: try to install non existing file
|
|
yum:
|
|
name: /tmp/non-existing-1.0.0.fc26.noarch.rpm
|
|
state: present
|
|
register: yum_result
|
|
ignore_errors: yes
|
|
|
|
- name: verify installation failed
|
|
assert:
|
|
that:
|
|
- "yum_result is failed"
|
|
- "not yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
|
|
- name: try to install from non existing url
|
|
yum:
|
|
name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/non-existing-1.0.0.fc26.noarch.rpm
|
|
state: present
|
|
register: yum_result
|
|
ignore_errors: yes
|
|
|
|
- name: verify installation failed
|
|
assert:
|
|
that:
|
|
- "yum_result is failed"
|
|
- "not yum_result is changed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
|
|
- name: use latest to install httpd
|
|
yum:
|
|
name: httpd
|
|
state: latest
|
|
register: yum_result
|
|
|
|
- name: verify httpd was installed
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
|
|
- name: uninstall httpd
|
|
yum:
|
|
name: httpd
|
|
state: removed
|
|
|
|
- name: update httpd only if it exists
|
|
yum:
|
|
name: httpd
|
|
state: latest
|
|
update_only: yes
|
|
register: yum_result
|
|
|
|
- name: verify httpd not installed
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
- "'Packages providing httpd not installed due to update_only specified' in yum_result.results"
|
|
|
|
- name: try to install not compatible arch rpm, should fail
|
|
yum:
|
|
name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/banner-1.3.4-3.el7.ppc64le.rpm
|
|
state: present
|
|
register: yum_result
|
|
ignore_errors: True
|
|
|
|
- name: verify that yum failed
|
|
assert:
|
|
that:
|
|
- "not yum_result is changed"
|
|
- "yum_result is failed"
|
|
|
|
# setup for testing installing an RPM from url
|
|
|
|
- set_fact:
|
|
pkg_name: fpaste
|
|
|
|
- name: cleanup
|
|
yum:
|
|
name: "{{ pkg_name }}"
|
|
state: absent
|
|
|
|
- set_fact:
|
|
pkg_url: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/fpaste-0.3.7.4.1-2.el7.noarch.rpm
|
|
when: ansible_python.version.major == 2
|
|
|
|
- set_fact:
|
|
pkg_url: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/fpaste-0.3.9.2-1.fc28.noarch.rpm
|
|
when: ansible_python.version.major == 3
|
|
# setup end
|
|
|
|
- name: download an rpm
|
|
get_url:
|
|
url: "{{ pkg_url }}"
|
|
dest: "/tmp/{{ pkg_name }}.rpm"
|
|
|
|
- name: install the downloaded rpm
|
|
yum:
|
|
name: "/tmp/{{ pkg_name }}.rpm"
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify installation
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
- "yum_result is not failed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: install the downloaded rpm again
|
|
yum:
|
|
name: "/tmp/{{ pkg_name }}.rpm"
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify installation
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "not yum_result is changed"
|
|
- "yum_result is not failed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: clean up
|
|
yum:
|
|
name: "{{ pkg_name }}"
|
|
state: absent
|
|
|
|
- name: install from url
|
|
yum:
|
|
name: "{{ pkg_url }}"
|
|
state: present
|
|
register: yum_result
|
|
|
|
- name: verify installation
|
|
assert:
|
|
that:
|
|
- "yum_result is success"
|
|
- "yum_result is changed"
|
|
- "yum_result is not failed"
|
|
|
|
- name: verify yum module outputs
|
|
assert:
|
|
that:
|
|
- "'changed' in yum_result"
|
|
- "'msg' in yum_result"
|
|
- "'results' in yum_result"
|
|
|
|
- name: Create a temp RPM file which does not contain nevra information
|
|
file:
|
|
name: "/tmp/non_existent_pkg.rpm"
|
|
state: touch
|
|
|
|
- name: Try installing RPM file which does not contain nevra information
|
|
yum:
|
|
name: "/tmp/non_existent_pkg.rpm"
|
|
state: present
|
|
register: no_nevra_info_result
|
|
ignore_errors: yes
|
|
|
|
- name: Verify RPM failed to install
|
|
assert:
|
|
that:
|
|
- "'changed' in no_nevra_info_result"
|
|
- "'msg' in no_nevra_info_result"
|
|
|
|
- name: Delete a temp RPM file
|
|
file:
|
|
name: "/tmp/non_existent_pkg.rpm"
|
|
state: absent
|
|
|
|
- name: get yum version
|
|
yum:
|
|
list: yum
|
|
register: yum_version
|
|
|
|
- name: set yum_version of installed version
|
|
set_fact:
|
|
yum_version: "{%- if item.yumstate == 'installed' -%}{{ item.version }}{%- else -%}{{ yum_version }}{%- endif -%}"
|
|
with_items: "{{ yum_version.results }}"
|
|
|
|
- block:
|
|
- name: uninstall bc
|
|
yum: name=bc state=removed
|
|
|
|
- name: check bc with rpm
|
|
shell: rpm -q bc
|
|
ignore_errors: True
|
|
register: rpm_bc_result
|
|
|
|
- name: verify bc is uninstalled
|
|
assert:
|
|
that:
|
|
- "rpm_bc_result is failed"
|
|
|
|
- name: exclude bc (yum backend)
|
|
lineinfile:
|
|
dest: /etc/yum.conf
|
|
regexp: (^exclude=)(.)*
|
|
line: "exclude=bc*"
|
|
state: present
|
|
when: ansible_pkg_mgr == 'yum'
|
|
|
|
- name: exclude bc (dnf backend)
|
|
lineinfile:
|
|
dest: /etc/dnf/dnf.conf
|
|
regexp: (^excludepkgs=)(.)*
|
|
line: "excludepkgs=bc*"
|
|
state: present
|
|
when: ansible_pkg_mgr == 'dnf'
|
|
|
|
# begin test case where disable_excludes is supported
|
|
- name: Try install bc without disable_excludes
|
|
yum: name=bc state=latest
|
|
register: yum_bc_result
|
|
ignore_errors: True
|
|
|
|
- name: verify bc did not install because it is in exclude list
|
|
assert:
|
|
that:
|
|
- "yum_bc_result is failed"
|
|
|
|
- name: install bc with disable_excludes
|
|
yum: name=bc state=latest disable_excludes=all
|
|
register: yum_bc_result_using_excludes
|
|
|
|
- name: verify bc did install using disable_excludes=all
|
|
assert:
|
|
that:
|
|
- "yum_bc_result_using_excludes is success"
|
|
- "yum_bc_result_using_excludes is changed"
|
|
- "yum_bc_result_using_excludes is not failed"
|
|
|
|
- name: remove exclude bc (cleanup yum.conf)
|
|
lineinfile:
|
|
dest: /etc/yum.conf
|
|
regexp: (^exclude=bc*)
|
|
line: "exclude="
|
|
state: present
|
|
when: ansible_pkg_mgr == 'yum'
|
|
|
|
- name: remove exclude bc (cleanup dnf.conf)
|
|
lineinfile:
|
|
dest: /etc/dnf/dnf.conf
|
|
regexp: (^excludepkgs=bc*)
|
|
line: "excludepkgs="
|
|
state: present
|
|
when: ansible_pkg_mgr == 'dnf'
|
|
|
|
# Fedora < 26 has a bug in dnf where package excludes in dnf.conf aren't
|
|
# actually honored and those releases are EOL'd so we have no expectation they
|
|
# will ever be fixed
|
|
when: not ((ansible_distribution == "Fedora") and (ansible_distribution_major_version|int < 26))
|