New structure

This commit is contained in:
2024-03-06 10:56:21 +00:00
parent f717d9ca0d
commit ca5b61e58b
38 changed files with 706 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
---
- hosts: docker
become: true
become_user: root
tasks:
- name: install-docker.yml | Stop service gitea on debian, if running
ansible.builtin.systemd:
name: gitea
state: stopped
- name: gitea.yml | Download newest gitea binary
ansible.builtin.get_url:
url: "{{ var_gitea_url }}"
dest: /tmp/gitea
mode: '0511'