build
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s

This commit is contained in:
2025-08-07 09:46:44 +02:00
parent baea88fa38
commit 9351f9a8ce
4 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
- name: Install container packages
become: "{{ false if inventory_hostname == 'nas.home.lan' else true }}"
block:
- name: Create Banner
ansible.builtin.command: |
docker exec --user root zabbix-server-zabbix-server-1 apk add curl
register: logo
changed_when: "logo.rc == 0"