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