fix: Remove debug tasks from main.yml

This commit is contained in:
Tobias J. Endres 2025-09-02 22:08:23 +02:00
parent 91ac9bd8b4
commit 0550c33943

View File

@ -3,17 +3,6 @@
become: true
vars:
ansible_python_interpreter: /usr/bin/python3
tasks: # Added tasks block
- name: "Debug: Read registries.conf on Scully" # Quoted task name
ansible.builtin.command: cat /home/ubuntu/.config/containers/registries.conf
register: registries_conf_content_debug
changed_when: false
ignore_errors: true
- name: "Debug: Display registries.conf content" # Quoted task name
debug:
var: registries_conf_content_debug.stdout
when: registries_conf_content_debug.rc == 0
roles:
- common
- podman # Ensure podman is configured before network