@ -1,24 +1,37 @@
# verify that apt is handling multi-arch systems properly
- name : load version specific vars
include_vars : '{{ item }}'
with_first_found:
- files:
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
- 'default.yml'
paths : '../vars'
- name : add architecture {{ apt_foreign_arch }}
command : dpkg --add-architecture {{ apt_foreign_arch }}
- name : install hello:{{ apt_foreign_arch }} with apt
apt : pkg=hello:{{ apt_foreign_arch }} state=present update_cache=yes
- name : install {{ multiarch_test_pkg }} :{{ apt_foreign_arch }} with apt
apt : pkg= {{ multiarch_test_pkg }} :{{ apt_foreign_arch }} state=present update_cache=yes
register : apt_result
until : apt_result is success
- name : uninstall hello:{{ apt_foreign_arch }} with apt
apt : pkg=hello:{{ apt_foreign_arch }} state=absent purge=yes
- name : check {{ multiarch_test_pkg }} version
shell : dpkg -s {{ multiarch_test_pkg }} | grep Version | awk '{print $2}'
register : pkg_version
- name : uninstall {{ multiarch_test_pkg }}:{{ apt_foreign_arch }} with apt
apt : pkg={{ multiarch_test_pkg }}:{{ apt_foreign_arch }} state=absent purge=yes
- name : install deb file
apt : deb="/var/cache/apt/archives/hello_{{ hello_version.stdout }}_{{ apt_foreign_arch }}.deb"
apt : deb="/var/cache/apt/archives/ {{ multiarch_test_pkg }}_{{ pkg _version.stdout }}_{{ apt_foreign_arch }}.deb"
register : apt_multi_initial
- name : install deb file again
apt : deb="/var/cache/apt/archives/ hello_{{ hello _version.stdout }}_{{ apt_foreign_arch }}.deb"
apt : deb="/var/cache/apt/archives/ {{ multiarch_test_pkg }}_{{ pkg _version.stdout }}_{{ apt_foreign_arch }}.deb"
register : apt_multi_secondary
- name : verify installation of hello :{{ apt_foreign_arch }}
- name : verify installation of {{ multiarch_test_pkg }} :{{ apt_foreign_arch }}
assert:
that:
- "apt_multi_initial.changed"