Commit f51e1601 by James Tanner

apt re-run verification

parent 2b3856f1
...@@ -17,6 +17,16 @@ ...@@ -17,6 +17,16 @@
- "'changed' in apt_result" - "'changed' in apt_result"
- "dpkg_result.rc == 1" - "dpkg_result.rc == 1"
# UNINSTALL AGAIN
- name: uninstall wget with apt
apt: pkg=wget state=absent purge=yes
register: apt_result
- name: verify no change on re-uninstall
assert:
that:
- "not apt_result.changed"
# INSTALL # INSTALL
- name: install wget with apt - name: install wget with apt
apt: name=wget state=present apt: name=wget state=present
...@@ -45,3 +55,15 @@ ...@@ -45,3 +55,15 @@
- "'stderr' in apt_result" - "'stderr' in apt_result"
- "'stdout' in apt_result" - "'stdout' in apt_result"
- "'stdout_lines' in apt_result" - "'stdout_lines' in apt_result"
# INSTALL AGAIN
- name: install wget with apt
apt: name=wget state=present
register: apt_result
- name: verify no change on re-install
assert:
that:
- "not apt_result.changed"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment