mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Use local dummy repo for flatpak_remote integration tests (#52668)
* Use local dummy repo for flatpak_remote integration tests * Excludes versions of Ubuntu older than 16.04 from tests Since there are no flatpak packages available for these Ubuntu versions * Adds handler that removes temporary symlink
This commit is contained in:
committed by
Matt Clay
parent
a4cdf0d698
commit
8f354ea307
@@ -0,0 +1,22 @@
|
||||
- name: Set up dummy flatpak repository remote
|
||||
block:
|
||||
|
||||
- name: Copy repo into place
|
||||
unarchive:
|
||||
src: repo.tar.xz
|
||||
dest: "{{ remote_tmp_dir }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
|
||||
- name: Create deterministic link to temp directory
|
||||
file:
|
||||
state: link
|
||||
src: "{{ remote_tmp_dir }}/"
|
||||
path: "/tmp/flatpak"
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
notify: remove temporary flatpak link
|
||||
|
||||
become: true
|
||||
Reference in New Issue
Block a user