mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Test install with wildcard
This commit is contained in:
parent
d14dcdc222
commit
dd9dc637d1
1 changed files with 23 additions and 0 deletions
|
@ -77,4 +77,27 @@
|
||||||
that:
|
that:
|
||||||
- "not apt_result.changed"
|
- "not apt_result.changed"
|
||||||
|
|
||||||
|
# UNINSTALL AGAIN
|
||||||
|
- name: uninstall hello with apt
|
||||||
|
apt: pkg=hello state=absent purge=yes
|
||||||
|
register: apt_result
|
||||||
|
|
||||||
|
# INSTALL WITH VERSION WILDCARD
|
||||||
|
- name: install hello with apt
|
||||||
|
apt: name=hello=2.7* state=present
|
||||||
|
register: apt_result
|
||||||
|
|
||||||
|
- name: check hello with wildcard with dpkg
|
||||||
|
shell: dpkg --get-selections | fgrep hello
|
||||||
|
failed_when: False
|
||||||
|
register: dpkg_result
|
||||||
|
|
||||||
|
- debug: var=apt_result
|
||||||
|
- debug: var=dpkg_result
|
||||||
|
|
||||||
|
- name: verify installation of hello
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "apt_result.changed"
|
||||||
|
- "dpkg_result.rc == 0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue