add missing theme

This commit is contained in:
Louis Abel 2022-10-25 16:26:39 -07:00
parent 303a71ceb6
commit 9e804148a6
Signed by: label
GPG Key ID: B37E62D143879B36
2 changed files with 38 additions and 1 deletions

View File

@ -39,6 +39,34 @@
import_tasks: "tasks/gitea.yml"
post_tasks:
- 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
- name: Touching run file that ansible has ran here
ansible.builtin.file:
path: /var/log/ansible.run

View File

@ -75,9 +75,18 @@ ROUTER = console
[ui]
DEFAULT_THEME = gitea-blue
THEMES = auto,gitea,arc-green,gitea-blue,gitea-modern,carbonred,darkred,pitchblack
THEMES = auto,gitea,arc-green,gitea-blue,gitea-modern,carbonred,darkred,pitchblack,earl-grey
AUTHOR = RESF Git Service
DESCRIPTION = RESF Git Service for the Rocky community
[admin]
DISABLE_REGULAR_ORG_CREATION = true
[cron.sync_external_users]
ENABLED = true
RUN_AT_START = true
SCHEDULE = @midnight
UPDATE_EXISTING = true
[indexer]
REPO_INDEXER_ENABLED = true