add missing theme
This commit is contained in:
parent
303a71ceb6
commit
9e804148a6
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user