

thank you very much for your continued support!
i am not sure which file you are referring to. this is tree from /etc/apt:
root@anytype:/etc/apt# tree
.
|-- apt.conf.d
| |-- 01autoremove
| |-- 20listchanges
| `-- 70debconf
|-- auth.conf.d
|-- keyrings
|-- listchanges.conf
|-- listchanges.conf.d
|-- preferences.d
|-- sources.list.d
| `-- debian.sources
`-- trusted.gpg.d
|-- debian-archive-bookworm-automatic.asc
|-- debian-archive-bookworm-security-automatic.asc
|-- debian-archive-bookworm-stable.asc
|-- debian-archive-bullseye-automatic.asc
|-- debian-archive-bullseye-security-automatic.asc
|-- debian-archive-bullseye-stable.asc
|-- debian-archive-trixie-automatic.asc
|-- debian-archive-trixie-security-automatic.asc
`-- debian-archive-trixie-stable.asc
its been clear for awhile now that the script is doing pretty much nothing: because, as you can see: even the keyrings directory is empty, so its not even able the repo, hence it cant find docker-ce. im not sure where it fails. if downloading the asc file, dearmoring, adding repo…
as you can see im running as root by the way, so no need to become.
how do you suggest i debug this? sorry for my total lack of knowledge.








my latest / current version doesnt have that anymore (ive been through a lot of constant revisions…)
--- - name: Install Docker Engine and Docker Compose on Debian (Ansible WebUI compatible) hosts: all become: true become_user: root vars: docker_pre_apks: - apt-transport-https - ca-certificates - curl - gnupg2 - libssl-dev - python3-cffi-backend - python3-pip - libffi-dev - python3-setuptools - python3-nacl - python3-jsondiff docker_apks: - docker-ce - docker-ce-cli - containerd.io docker_arch: amd64 tasks: - name: Install pre setup stuff ansible.builtin.apt: pkg: "{{ docker_pre_apks }}" update_cache: true state: present - name: Add gpg for docker repo ansible.builtin.apt_key: url: https://download.docker.com/linux/debian/gpg state: present when: (ansible_distribution == 'Debian' and ansible_distribution_major_version <= '12') - name: Copy up apt list ansible.builtin.apt_repository: repo: "deb [arch={{ docker_arch }}] https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable" state: present filename: docker when: (ansible_distribution == 'Debian' and ansible_distribution_major_version <= '12') - name: Setup deb822 formatted repositorie ansible.builtin.deb822_repository: name: php types: deb uris: https://download.docker.com/linux/debian components: stable suites: "{{ ansible_distribution_release }}" signed_by: https://download.docker.com/linux/debian/gpg state: present enabled: true when: (ansible_distribution == 'Debian' and ansible_distribution_major_version >= '13') - name: Install docker ansible.builtin.apt: pkg: "{{ docker_apks }}" force_apt_get: yes update_cache: yes state: present - name: Start docker service ansible.builtin.service: name: docker enabled: yes state: startedas a reminder: this is run (unsuccessfully) through ansible web-ui while that could be an issue, im confused the same setup was able to run a (simplier) nother playbook
- name: install root ca certificate hosts: all gather_facts: yes tasks: - name: Copy custom CA certificate copy: src: ../files/root_ca.crt dest: /usr/local/share/ca-certificates/root_ca.crt mode: '0644' - name: Update CA certificates command: update-ca-certificates register: ca_updateim not making sense of this