debug: Add temporary tasks to read registries.conf on Scully
This commit is contained in:
parent
fdd2017d96
commit
fbeee6de1c
@ -3,7 +3,18 @@
|
||||
become: true
|
||||
vars:
|
||||
ansible_python_interpreter: /usr/bin/python3
|
||||
tasks: # Added tasks block
|
||||
- name: Debug: Read registries.conf on Scully
|
||||
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
|
||||
debug:
|
||||
var: registries_conf_content_debug.stdout
|
||||
when: registries_conf_content_debug.rc == 0
|
||||
roles:
|
||||
- common
|
||||
- podman # Ensure podman is configured before network
|
||||
- network
|
||||
- network
|
||||
Loading…
x
Reference in New Issue
Block a user