From 30b9f8cf294e09b2f2b696f10dc92e9857fe48cc Mon Sep 17 00:00:00 2001 From: lhahn Date: Tue, 16 Jun 2026 15:09:11 +0200 Subject: [PATCH] Update to running setup. --- meta/.galaxy_install_info | 2 ++ tasks/main.yml | 25 ++++++++++++++++++------- 2 files changed, 20 insertions(+), 7 deletions(-) create mode 100644 meta/.galaxy_install_info diff --git a/meta/.galaxy_install_info b/meta/.galaxy_install_info new file mode 100644 index 0000000..a470c66 --- /dev/null +++ b/meta/.galaxy_install_info @@ -0,0 +1,2 @@ +install_date: 'Do 14 Mai 2026 19:50:51 ' +version: '' diff --git a/tasks/main.yml b/tasks/main.yml index 768aa98..f58a45e 100755 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -9,19 +9,30 @@ - apt-transport-https - ca-certificates - gnupg2 - - software-properties-common - curl # Docker -- name: install docker repository key - apt_key: - url: https://download.docker.com/linux/debian/gpg - state: present +- name: Create apt keyrings directory + file: + path: /etc/apt/keyrings + state: directory + mode: '0755' -- name: install docker repository +- name: Download Docker GPG key + get_url: + url: https://download.docker.com/linux/debian/gpg + dest: /etc/apt/keyrings/docker.asc + mode: '0644' + +- name: Add Docker repository for Debian 13 (use bookworm) apt_repository: - repo: "deb [arch={{ ansible_kernel.split('-')[-1] }}] https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable" + repo: "deb [arch=arm64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian bookworm stable" state: present + filename: docker + +- name: Update apt cache + apt: + update_cache: yes - name: install docker (docker-ce + docker-ce-cli) apt: