From bbad033a5e8db9a79c1a7913d8c1f503b67288a9 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Tue, 15 Jan 2019 11:16:15 +1000 Subject: [PATCH] ansible-test: apt cleanup and futher 18.04 fixes (#50906) --- test/integration/targets/apt/tasks/main.yml | 4 ++-- test/integration/targets/apt_repository/tasks/apt.yml | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/test/integration/targets/apt/tasks/main.yml b/test/integration/targets/apt/tasks/main.yml index c99dbab5101..1d5fae77f85 100644 --- a/test/integration/targets/apt/tasks/main.yml +++ b/test/integration/targets/apt/tasks/main.yml @@ -27,8 +27,8 @@ - block: - include: 'repo.yml' always: - - apt_repository: - repo: "deb file:{{ repodir }} ./" + - file: + path: /etc/apt/sources.list.d/file_tmp_repo.list state: absent - file: name: "{{ repodir }}" diff --git a/test/integration/targets/apt_repository/tasks/apt.yml b/test/integration/targets/apt_repository/tasks/apt.yml index 612a7f270d7..941335f2c6b 100644 --- a/test/integration/targets/apt_repository/tasks/apt.yml +++ b/test/integration/targets/apt_repository/tasks/apt.yml @@ -135,6 +135,9 @@ stat: path='/var/cache/apt/pkgcache.bin' register: cache_before +- name: ensure ppa key is present before adding repo that requires authentication + apt_key: keyserver=keyserver.ubuntu.com id='{{test_ppa_key}}' state=present + - name: 'name= (expect: pass)' apt_repository: repo='{{test_ppa_spec}}' state=present register: result @@ -167,6 +170,9 @@ stat: path='/var/cache/apt/pkgcache.bin' register: cache_before +- name: ensure ppa key is present before adding repo that requires authentication + apt_key: keyserver=keyserver.ubuntu.com id='{{test_ppa_key}}' state=present + - name: 'name= filename= (expect: pass)' apt_repository: repo='{{test_ppa_spec}}' filename='{{test_ppa_filename}}' state=present register: result