ansible-gitea-management/role-gitea.yml

78 lines
1.9 KiB
YAML
Raw Normal View History

2022-03-04 05:15:25 +00:00
---
# This does not use the gitea collection to install. Instead, we are installing
# from our own packages built for EL/Fedora in Copr.
2022-03-04 05:15:25 +00:00
- 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
2022-03-28 02:00:34 +00:00
ansible.builtin.assert:
2022-03-04 05:15:25 +00:00
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"
2022-03-28 00:53:47 +00:00
# name: Enable the proper copr for gitea
# command: "dnf copr enable nalika/gitea -y"
# check_mode: false
# changed_when: "1 != 1"
2022-03-04 05:15:25 +00:00
roles:
2022-03-28 00:53:47 +00:00
- role: lazyutilitynet.ansible_gitea.gitea_install
state: present
- role: rockylinux.ipagetcert
state: present
when: gitea_web_config_certs_internal|bool
2022-03-04 05:15:25 +00:00
tasks:
- name: Install and Configure Gitea
import_tasks: "tasks/gitea.yml"
post_tasks:
2022-10-25 23:26:39 +00:00
- name: Open firewalld ports
ansible.posix.firewalld:
service: "{{ item }}"
permanent: true
immediate: true
state: enabled
with_items:
- http
- https
- name: Open 22220/tcp
ansible.posix.firewalld:
port: 22220/tcp
permanent: true
immediate: true
state: enabled
- name: Turn on necessary SELinux booleans
ansible.posix.seboolean:
name: "{{ item }}"
state: true
persistent: true
loop:
- httpd_can_network_connect
- httpd_can_network_relay
- httpd_can_connect_ldap
- httpd_read_user_content
2022-03-04 05:15:25 +00:00
- name: Touching run file that ansible has ran here
2022-06-04 03:15:53 +00:00
ansible.builtin.file:
2022-03-04 05:15:25 +00:00
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root
...