div
This commit is contained in:
@@ -8,6 +8,18 @@
|
||||
loop: "{{ NFS_MOUNTS }}"
|
||||
tags: setup, test
|
||||
|
||||
- name: Add podman repo + gpg key
|
||||
block:
|
||||
- name: somerepo |no apt key
|
||||
ansible.builtin.get_url:
|
||||
url: "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${{ ansible_distribution_version }}/Release.key"
|
||||
dest: /etc/apt/trusted.gpg.d/podman.asc
|
||||
|
||||
- name: somerepo | apt source
|
||||
ansible.builtin.apt_repository:
|
||||
repo: "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/podman.asc] https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${{ ansible_distribution_version }}/ /"
|
||||
state: present
|
||||
|
||||
- name: Install mediaserver packages
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
@@ -15,6 +27,8 @@
|
||||
update_cache: true
|
||||
loop:
|
||||
- python3-docker
|
||||
- podman
|
||||
- podman-plugins
|
||||
|
||||
- name: Install pip docker-compose
|
||||
pip:
|
||||
|
||||
Reference in New Issue
Block a user