14 Commits

Author SHA1 Message Date
1b3b29f556 feat: go back to gitea
Some checks failed
Continuous Integration / lint_n_build (push) Has been cancelled
2026-03-15 19:08:39 +01:00
663cf89639 fix: user list command
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-03 02:38:33 +01:00
ee803e538b fix: config file rights
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-03 02:34:21 +01:00
7e971433a7 feat: create admin user
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-03 02:29:04 +01:00
641ac4adb6 fix: forgejo web command
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-03 01:34:18 +01:00
bb55579880 fix: usermod command syntax
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-03 01:28:21 +01:00
c4adafb535 fix: add folders in make instal
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-03 01:11:39 +01:00
c0de29a266 feat: replace gitea by forgejo 2026-03-03 01:09:48 +01:00
e19760d37e fix: typo in spec
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-01 17:03:10 +01:00
89837bef2b fix: remove wget output
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-01 16:56:47 +01:00
3334a877d7 fix: group not exists
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-01 16:45:01 +01:00
bdfe38f896 fix: create gitea user in %pre
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-01 16:38:59 +01:00
de28f71901 fix: config file rights
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-03-01 16:35:03 +01:00
c313318eb0 fix: dump as gitea 2026-03-01 15:39:38 +01:00
12 changed files with 209 additions and 102 deletions

View File

@@ -7,21 +7,15 @@ on:
jobs: jobs:
build_n_upload: build_n_upload:
runs-on: linux runs-on: self-hosted
steps: steps:
- name: Git checkout - uses: actions/checkout@v6
uses: actions/checkout@v6
with: with:
fetch-depth: 0
fetch-tags: true fetch-tags: true
- name: Build tarball - run: make tarball
run: make tarball - run: rpmbuild -ba "$(make name).spec"
- run: make upload
env: env:
GIT_REFERENCE: ${{ github.ref }} PKG_TOKEN: ${{ secrets.PKG_TOKEN }}
- name: Build rpm package
run: rpmbuild -ba "$(make name).spec"
- name: Upload rpm package
run: make upload
env:
GIT_PACKAGES_USERNAME: ${{ vars.GIT_PACKAGES_USERNAME }}
GIT_PACKAGES_TOKEN: ${{ secrets.GIT_PACKAGES_TOKEN }}

View File

@@ -18,4 +18,3 @@ jobs:
run: make tarball run: make tarball
- name: Build rpm file - name: Build rpm file
run: rpmbuild -ba "$(make name).spec" run: rpmbuild -ba "$(make name).spec"

View File

@@ -1,54 +1,89 @@
NAME = netoik-git NAME = netoik-git
VERSION = $(shell git describe --abbrev=0) VERSION = $(shell git describe --abbrev=0)
RELEASE = $(shell git rev-parse --short HEAD) RELEASE = $(shell git rev-parse --short HEAD)
REFERENCE = $(if $(GIT_REFERENCE),$(GIT_REFERENCE),$(shell git branch --show-current))
ARCH = noarch ARCH = noarch
OWNER = samuel
SUMMARY = "Netoïk Git server"
LICENSE = "MIT"
URL = "https://git.netoik.io/$(OWNER)/$(NAME)"
SOURCE0 = "$(NAME)-$(VERSION)-$(RELEASE).tar.gz"
RPM_RPMDIR = $(shell rpm --eval '%{_rpmdir}') RPM_RPMDIR = $(shell rpm --eval '%{_rpmdir}')
RPM_SBINDIR = $(shell rpm --eval '%{_sbindir}') RPM_SBINDIR = $(shell rpm --eval '%{_sbindir}')
RPM_SOURCEDIR = $(shell rpm --eval '%{_sourcedir}') RPM_SOURCEDIR = $(shell rpm --eval '%{_sourcedir}')
RPM_SHAREDSTATEDIR = $(shell rpm --eval '%{_sharedstatedir}')
RPM_SYSCONFDIR = $(shell rpm --eval '%{_sysconfdir}') RPM_SYSCONFDIR = $(shell rpm --eval '%{_sysconfdir}')
RPM_TMPPATH = $(shell rpm --eval '%{_tmppath}')
RPM_UNITDIR = $(shell rpm --eval '%{_unitdir}') RPM_UNITDIR = $(shell rpm --eval '%{_unitdir}')
RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(NAME)-$(VERSION)-$(RELEASE).tar.gz RPM_TARBALL_PATH = $(RPM_SOURCEDIR)/$(SOURCE0)
RPM_BUILD_PATH = $(RPM_RPMDIR)/$(BUILD_ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(BUILD_ARCH).rpm RPM_BUILD_PATH = $(RPM_RPMDIR)/$(ARCH)/$(NAME)-$(VERSION)-$(RELEASE).$(ARCH).rpm
.PHONY: help
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: name .PHONY: name
name: name: ## Show project name
@echo "$(NAME)" @echo "$(NAME)"
.PHONY: version .PHONY: version
version: version: ## Show current project version
@echo "$(VERSION)" @echo "$(VERSION)"
.PHONY: release .PHONY: release
release: release: ## Show current project release
@echo "$(RELEASE)" @echo "$(RELEASE)"
.PHONY: arch .PHONY: arch
arch: arch: ## Show rpm arch target
@echo "$(ARCH)" @echo "$(ARCH)"
.PHONY: install .PHONY: owner
install: owner: ## Show project owner name
install --mode=755 --directory $(DESTDIR)$(RPM_SYSCONFDIR)/gitea $(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d $(DESTDIR)$(RPM_UNITDIR) $(DESTDIR)$(RPM_SHAREDSTATEDIR)/actrunners @echo "$(OWNER)"
install --mode=644 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d/ files/nginx/git.netoik.io.conf
install --mode=640 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/gitea files/gitea/app.ini .PHONY: summary
install --mode=644 --target-directory=$(DESTDIR)$(RPM_UNITDIR) files/systemd/gitea.service files/systemd/actrunner@.service summary: ## Show project summary
@echo "$(SUMMARY)"
.PHONY: license
license: ## Show project license
@echo "$(LICENSE)"
.PHONY: url
url: ## Show project homepage URL
@echo "$(URL)"
.PHONY: source0
source0: ## Show rpm source0 file name
@echo "$(SOURCE0)"
$(RPM_TARBALL_PATH): * $(RPM_TARBALL_PATH): *
git archive --format=tar.gz \ git archive --format=tar.gz \
--output="$@" \ --output="$@" \
--prefix="$(NAME)-$(VERSION)/" \ --prefix="$(NAME)-$(VERSION)/" \
--verbose \ --verbose \
"$(REFERENCE)" HEAD
.PHONY: tarball .PHONY: tarball
tarball: $(RPM_TARBALL_PATH) tarball: $(RPM_TARBALL_PATH) ## Build rpm tarball
.PHONY: install
install: ## Install files into rpm dest (requires env var DESTDIR)
@if [ -z "$(DESTDIR)" ]; then \
printf "[CRITICAL] Missing env var DESTDIR\n[CRITICAL] This command is designed to be called by rpmbuild only!\n" 1>&2; \
exit 1; \
fi
install --mode=755 --directory $(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d $(DESTDIR)$(RPM_SYSCONFDIR)/gitea $(DESTDIR)$(RPM_UNITDIR) $(DESTDIR)$(RPM_TMPPATH)/gitea_images
install --mode=644 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/nginx/conf.d files/nginx/git.netoik.io.conf
install --mode=640 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/gitea files/gitea/app.ini
install --mode=644 --target-directory=$(DESTDIR)$(RPM_UNITDIR) files/systemd/gitea.service
install --mode=644 --target-directory=$(DESTDIR)$(RPM_TMPPATH)/gitea_images files/img/*
.PHONY: upload .PHONY: upload
upload: upload: ## Upload rpm package to Gitea repository (requires env var PKG_TOKEN)
curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(GIT_PACKAGES_USERNAME):$(GIT_PACKAGES_TOKEN)" https://git.netoik.io/api/packages/$(GIT_PACKAGES_USERNAME)/rpm/upload @if [ -z "$(PKG_TOKEN)" ]; then \
printf "[CRITICAL] Missing env var PKG_TOKEN\n[CRITICAL] This command is designed to be called by Gitea Actions only!\n" 1>&2; \
exit 1; \
fi
curl --fail-with-body --upload-file "$(RPM_BUILD_PATH)" --user "$(OWNER):$(PKG_TOKEN)" https://git.netoik.io/api/packages/$(OWNER)/rpm/upload

View File

@@ -1,3 +1,83 @@
# Netoïk Git ![badge](https://git.netoik.io/samuel/netoik-git/actions/workflows/ci.yaml/badge.svg) # Netoïk Git Server ![badge](https://git.netoik.io/samuel/netoik-git/actions/workflows/ci.yaml/badge.svg)
Build an RPM package which will install the Git server called Gitea with custom configuration.
- listen on port 3000
- reversed by nginx
- rely on postgres for database
- rely on valkey for cache
# Development
A `Makefile` is integrated to let you run some basic commands.
- Display some information about the project
```shell
make help
make name
make version
make release
make arch
```
- Build a tarball:
```shell
make tarball
```
- Build an rpm package:
```shell
rpmbuild -ba netoik-git.spec
```
- Upload rpm package to Gitea repository (env var `PKG_TOKEN` is required):
```shell
make upload
```
# CI / CD
Two workflows are set up.
- Continuous Integration:
- triggered by each push event on branch `main`
- builds tarball
- builds rpm package
- Continuous Delivery:
- triggered by each tag push event
- builds tarball
- builds rpm package
- uploads rpm package to repository
# Deployment
Some commands to deploy the RPM package on server
- Add Gitea repo to your repo list:
```shell
dnf config-manager --add-repo https://git.netoik.io/api/packages/samuel/rpm.repo
dnf repolist | grep gitea-samuel
```
- Show available versions:
```shell
dnf --showduplicates netoik-git
```
- Install or upgrade package:
```shell
dnf --nogpgcheck --refresh --assumeyes --best install netoik-git
```
# Security Notes
For security reasons, act runners does not have sudo privileges and so there is:
- **no** Continuous Deployment because act runners cannot use `dnf`
- **no** GPG signing because act runners cannot use `gpg`
Build an RPM package which will install the Git UI server called Gitea.

View File

@@ -1,11 +1,14 @@
# Do not edit this file unless you are aware about what you are doing! # Do not edit this file unless you are aware about what you are doing!
# See official doc here: https://docs.gitea.com/next/administration/config-cheat-sheet # See official doc here: https://docs.gitea.com/next/administration/config-cheat-sheet
APP_NAME = Netoïk Git Server RUN_USER = gitea
RUN_USER = gitea
RUN_MODE = prod RUN_MODE = prod
WORK_PATH = /var/lib/gitea WORK_PATH = /var/lib/gitea
[ui]
THEMES=dark,light,auto
DEFAULT_THEME=auto
[server] [server]
DOMAIN = git.netoik.io DOMAIN = git.netoik.io
ROOT_URL = https://git.netoik.io/ ROOT_URL = https://git.netoik.io/
@@ -28,6 +31,13 @@ INTERNAL_TOKEN = $INTERNAL_TOKEN
[service] [service]
DISABLE_REGISTRATION = true DISABLE_REGISTRATION = true
[cache]
ADAPTER = redis
HOST = redis+socket:///run/valkey/valkey.sock
[session] [session]
PROVIDER = redis PROVIDER = redis
PROVIDER_CONFIG = /run/valkey/valkey.sock PROVIDER_CONFIG = redis+socket:///run/valkey/valkey.sock
[oauth2]
JWT_SECRET = $JWT_SECRET

BIN
files/img/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

1
files/img/favicon.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="180" zoomAndPan="magnify" viewBox="0 0 135 135.000003" height="180" preserveAspectRatio="xMidYMid meet" version="1.0"><defs><g/><clipPath id="c8284118b8"><path d="M 0.496094 0 L 134.503906 0 L 134.503906 134.007812 L 0.496094 134.007812 Z M 0.496094 0 " clip-rule="nonzero"/></clipPath><clipPath id="7a25ccad2a"><path d="M 0.496094 11 L 87 11 L 87 114 L 0.496094 114 Z M 0.496094 11 " clip-rule="nonzero"/></clipPath><clipPath id="b80303876e"><rect x="0" width="135" y="0" height="135"/></clipPath></defs><g clip-path="url(#c8284118b8)"><g transform="matrix(1, 0, 0, 1, 0.000000000000000056, -0.000000000000003367)"><g clip-path="url(#b80303876e)"><g clip-path="url(#7a25ccad2a)"><g fill="#a6c6f7" fill-opacity="1"><g transform="translate(-8.941766, 113.113191)"><g><path d="M 95.3125 -3.65625 C 95.3125 -2.726562 94.988281 -1.882812 94.34375 -1.125 C 93.707031 -0.375 92.925781 0 92 0 L 70.5625 0 C 69.632812 0 68.820312 -0.375 68.125 -1.125 C 67.425781 -1.882812 67.078125 -2.726562 67.078125 -3.65625 L 67.078125 -64.984375 C 67.078125 -68.816406 66.492188 -71.953125 65.328125 -74.390625 C 64.171875 -76.835938 61.328125 -78.0625 56.796875 -78.0625 L 48.09375 -78.0625 C 43.5625 -78.0625 40.710938 -76.835938 39.546875 -74.390625 C 38.390625 -71.953125 37.8125 -68.816406 37.8125 -64.984375 L 37.8125 -3.65625 C 37.8125 -2.726562 37.460938 -1.882812 36.765625 -1.125 C 36.066406 -0.375 35.253906 0 34.328125 0 L 12.890625 0 C 11.960938 0 11.175781 -0.375 10.53125 -1.125 C 9.894531 -1.882812 9.578125 -2.726562 9.578125 -3.65625 L 9.578125 -64.984375 C 9.578125 -77.066406 12.859375 -86.128906 19.421875 -92.171875 C 25.984375 -98.210938 35.539062 -101.234375 48.09375 -101.234375 L 56.796875 -101.234375 C 69.347656 -101.234375 78.90625 -98.210938 85.46875 -92.171875 C 92.03125 -86.128906 95.3125 -77.066406 95.3125 -64.984375 Z M 95.3125 -3.65625 "/></g></g></g></g><g fill="#a6c6f7" fill-opacity="1"><g transform="translate(95.940777, 113.113191)"><g><path d="M 37.640625 -3.484375 C 37.640625 -2.554688 37.289062 -1.742188 36.59375 -1.046875 C 35.894531 -0.347656 35.082031 0 34.15625 0 L 13.765625 0 C 12.835938 0 11.992188 -0.347656 11.234375 -1.046875 C 10.484375 -1.742188 10.109375 -2.554688 10.109375 -3.484375 L 10.109375 -25.4375 C 10.109375 -26.363281 10.484375 -27.144531 11.234375 -27.78125 C 11.992188 -28.425781 12.835938 -28.75 13.765625 -28.75 L 34.15625 -28.75 C 35.082031 -28.75 35.894531 -28.425781 36.59375 -27.78125 C 37.289062 -27.144531 37.640625 -26.363281 37.640625 -25.4375 Z M 37.640625 -3.484375 "/></g></g></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
files/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

1
files/img/logo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@@ -1,17 +0,0 @@
[Unit]
Description=Gitea Actions runner #%i
Documentation=https://gitea.com/gitea/act_runner
After=network.target gitea.service
[Service]
ExecStartPre=/usr/bin/rpmdev-setuptree
ExecStart=/usr/local/bin/act_runner daemon
ExecReload=/bin/kill -s HUP $MAINPID
WorkingDirectory=/var/lib//actrunners/actrunner%i
TimeoutSec=0
RestartSec=10
Restart=always
User=actrunner%i
[Install]
WantedBy=multi-user.target

View File

@@ -8,7 +8,7 @@ Type=simple
User=gitea User=gitea
Group=gitea Group=gitea
WorkingDirectory=/var/lib/gitea/ WorkingDirectory=/var/lib/gitea/
ExecStart=/usr/local/bin/gitea web --config /etc/gitea/app.ini ExecStart=/usr/sbin/gitea web
Restart=always Restart=always
[Install] [Install]

View File

@@ -3,17 +3,17 @@
Name: %(make name) Name: %(make name)
Version: %(make version) Version: %(make version)
Release: %(make release) Release: %(make release)
Summary: Netoik Reverse Proxy Summary: %(make summary)
License: MIT License: %(make license)
URL: https://git.netoik.io/samuel/%(make name) URL: %(make url)
Source0: %{name}-%{version}-%{release}.tar.gz Source0: %(make source0)
Buildarch: %(make arch) Buildarch: %(make arch)
BuildRequires: make BuildRequires: make
Requires: netoik-rp netoik-db netoik-cache git Requires: netoik-rp netoik-db netoik-cache
%description %description
Install the Git UI server called Gitea. Install the Git server called Gitea.
%prep %prep
%autosetup -v %autosetup -v
@@ -22,64 +22,68 @@ Install the Git UI server called Gitea.
%make_install %make_install
%post %post
# Download gitea bin and verify gpg signature # Download and verify gitea binary
wget --output-document %{_tmppath}/gitea "$GITEA_BIN_URL" export ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')
wget --output-document %{_tmppath}/gitea.asc "$GITEA_ASC_URL" wget -O %{_tmppath}/gitea https://dl.gitea.com/gitea/1.25.5/gitea-1.25.5-linux-$ARCH
gpg --keyserver "$GITEA_GPG_KEYSERVER" --recv "$GITEA_GPG_RECV" wget -O %{_tmppath}/gitea.asc https://dl.gitea.com/gitea/1.25.5/gitea-1.25.5-linux-$ARCH.asc
gpg --keyserver hkps://keys.openpgp.org --recv 7C9E68152594688862D62AF62D9AE806EC1592E2
gpg --verify %{_tmppath}/gitea.asc %{_tmppath}/gitea gpg --verify %{_tmppath}/gitea.asc %{_tmppath}/gitea
mv %{_tmppath}/gitea %{_sbindir}
chmod 755 %{_sbindir}/gitea
rm %{_tmppath}/gitea.asc rm %{_tmppath}/gitea.asc
chmod 755 gitea
mv %{_tmppath}/gitea %{_sbindir}/gitea
# Replace secrets in app.ini
export INTERNAL_TOKEN=$(runuser --user=gitea -- gitea generate secret INTERNAL_TOKEN)
export JWT_SECRET=$(runuser --user=gitea -- gitea generate secret JWT_SECRET)
export SECRET_KEY=$(runuser --user=gitea -- gitea generate secret SECRET_TOKEN)
envsubst < %{_sysconfdir}/gitea/app.ini > %{_sysconfdir}/gitea/.app.ini.new
mv %{_sysconfdir}/gitea/.app.ini.new %{_sysconfdir}/gitea/app.ini
chown root:gitea %{_sysconfdir}/gitea/app.ini
# Create gitea user # Create gitea user
useradd --system --create-home --bade-dir %{_sharedstatedir} gitea useradd --base-dir %{_sharedstatedir} --create-home --shell $SHELL --system gitea
runuser --user gitea -- mkdir --parents %{_sharedstatedir}/gitea/{data,custom} runuser --user=gitea -- mkdir --parents %{_sharedstatedir}/gitea/{custom,data,log} %{_sharedstatedir}/gitea/custom/conf
runuser --user=gitea -- ln --symbolic --force %{_sysconfdir}/gitea/app.ini %{_sharedstatedir}/gitea/custom/conf/app.ini
usermod --groups postgres,valkey --append gitea
# Generate internal token and secret key # Add lugit theme
INTERNAL_TOKEN="$(gitea generate secret INTERNAL_TOKEN)" wget -O %{_tmppath}/gitea-lugit-theme.tar.gz https://github.com/lucas-labs/gitea-lugit-theme/releases/download/v1.0.1/gitea-lugit-theme.tar.gz
SECRET_KEY="$(gitea generate secret SECRET_KEY)" runuser --user=gitea -- tar --extract --gzip --directory=%{_sharedstatedir}/gitea/custom --file %{_tmppath}/gitea-lugit-theme.tar.gz
envsubst < %{_sysconfdir}/gitea/app.ini > %{_sysconfdir}/gitea/app.ini.new runuser --user=gitea -- mv %{_tmppath}/gitea_images/* %{_sharedstatedir}/gitea/custom/public/assets/img
mv %{_sysconfdir}/gitea/app.ini.new %{_sysconfdir}/gitea/app.ini rm --recursive %{_tmppath}/gitea_images
chmod 600 %{_sysconfdir}/gitea/app.ini
# Create actrunners # Create postgres user and db
for i in $(seq 1 $GITEA_ACT_RUNNERS); do if ! runuser --user=postgres -- psql --quiet --tuples-only --command='\du' | grep --quiet gitea; then
if ! id "actrunner$i"; then runuser --user=postgres -- createuser gitea
useradd --system --create-home --base-dir %{_sharedstatedir}/actrunners "actrunner$i" runuser --user=postgres -- createdb --owner=gitea gitea
systemctl daemon-reload fi
systemctl reenable "actrunner@$i"
systemctl restart "actrunner@$i"
fi
done
# Start gitea service # Create admin user
if ! runuser --user=gitea -- gitea admin user list | grep samuel; then
runuser --user=gitea -- gitea admin user create --username samuel --email "samuel.campos@netoik.io" --admin --random-password --random-password-length 30 --fullname "Samuel Campos"
runuser --user=gitea -- gitea admin user must-change-password samuel
fi
# Restart gitea and nginx services
systemctl daemon-reload systemctl daemon-reload
systemctl reenable gitea.service systemctl reenable gitea.service
systemctl restart gitea.service systemctl restart gitea.service nginx.service
%preun
# Backup gitea data in case of problem
gitea dump --config %{_sysconfdir}/gitea/app.ini --tempdir %{_tmppath}
%postun %postun
# Remove gitea user after uninstall if [ $1 == 0 ]; then
if [ %1 == 0 ]; then
systemctl stop gitea.service
userdel --force --remove gitea userdel --force --remove gitea
runuser --user=postgres -- psql --command='DROP DATABASE gitea; DROP USER gitea;'
fi fi
%files %files
%dir %attr(755, root, root) %{_sysconfdir}/gitea
%attr(640, root, -) %{_sysconfdir}/gitea/app.ini
%attr(644, root, root) %{_sysconfdir}/nginx/conf.d/git.netoik.io.conf %attr(644, root, root) %{_sysconfdir}/nginx/conf.d/git.netoik.io.conf
%dir %attr(755, root, root) %{_sysconfdir}/gitea
%attr(640, root, gitea) %{_sysconfdir}/gitea/app.ini
%attr(644, root, root) %{_unitdir}/gitea.service %attr(644, root, root) %{_unitdir}/gitea.service
%attr(644, root, root) %{_unitdir}/actrunner@.service
%dir %attr(755, root, root) %{_sharedstatedir}/actrunners %attr(755, root, root) %{_sbindir}/gitea
%changelog %changelog
%autochangelog %autochangelog