ansible-gitea-management/role-gitea.yml

50 lines
1.2 KiB
YAML

---
# This does not use the gitea collection to install. Instead, we are installing
# from our own packages built for EL/Fedora in Copr.
- name: Setup Gitea
hosts: all
become: true
vars_files:
- "vars/common.yml"
- "vars/db.yml"
pre_tasks:
- name: Check if ansible cannot be run here
stat:
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
# name: Enable the proper copr for gitea
# command: "dnf copr enable nalika/gitea -y"
# check_mode: false
# changed_when: "1 != 1"
roles:
- role: lazyutilitynet.ansible_gitea.gitea_install
state: present
- role: rockylinux.ipagetcert
state: present
when: gitea_web_config_certs_internal|bool
tasks:
- name: Install and Configure Gitea
import_tasks: "tasks/gitea.yml"
post_tasks:
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root
...