ansible/test/integration/targets/dnf/tasks/modularity.yml
Matt Clay a20d0d1afb
Fix dnf integration test issues. (#51251)
* update/enable rhel8 beta integration tests for yum and dnf

Signed-off-by: Adam Miller <admiller@redhat.com>

* fix typo in conditional for dnf/tasks/main.yml

Signed-off-by: Adam Miller <admiller@redhat.com>

* fix var scoping for environment checks

Signed-off-by: Adam Miller <admiller@redhat.com>

* Disable install via path on RHEL.
2019-01-23 13:52:03 -08:00

47 lines
1.1 KiB
YAML

- name: install "@postgresql:9.6/client" module
dnf:
name: "@postgresql:9.6/client"
state: present
register: dnf_result
- name: verify installation of "@postgresql:9.6/client" module
assert:
that:
- "not dnf_result.failed"
- "dnf_result.changed"
- name: install "@postgresql:9.6/client" module again
dnf:
name: "@postgresql:9.6/client"
state: present
register: dnf_result
- name: verify installation of "@postgresql:9.6/client" module again
assert:
that:
- "not dnf_result.failed"
- "not dnf_result.changed"
- name: uninstall "@postgresql:9.6/client" module
dnf:
name: "@postgresql:9.6/client"
state: absent
register: dnf_result
- name: verify uninstallation of "@postgresql:9.6/client" module
assert:
that:
- "not dnf_result.failed"
- "dnf_result.changed"
- name: uninstall "@postgresql:9.6/client" module again
dnf:
name: "@postgresql:9.6/client"
state: absent
register: dnf_result
- name: verify uninstallation of "@postgresql:9.6/client" module again
assert:
that:
- "not dnf_result.failed"
- "not dnf_result.changed"