amd64
arm64
DEBIAN
control
postinst
prerm
etc
opt
.gitignore
build.sh
gitea-release.asc
8 lines
104 B
Bash
Executable File
8 lines
104 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Stop the Gitea service before updating/removal
|
|
systemctl stop gitea || true
|
|
|
|
exit 0
|