1
0
mirror of https://gitlab.com/packaging/gitea synced 2024-12-18 08:03:29 +00:00

add label/origin/suite to repo

Signed-off-by: morph027 <stefan.heitmueller@gmx.com>
This commit is contained in:
morph027 2022-09-04 10:40:16 +02:00
parent 95b3e57504
commit 882c7a05d3
No known key found for this signature in database
GPG Key ID: BF17A54BB873BE58
2 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,6 @@
Origin: morph027
Suite: gitea
Label: gitea
Codename: gitea
Components: main
Architectures: amd64 arm64

View File

@ -28,3 +28,17 @@ sudo apt-get install gitea morph027-keyring
```
systemctl enable --now gitea
```

## Extras

### unattended-upgrades

To enable automatic upgrades using `unattended-upgrades`, just add the following config file:

```bash
cat > /etc/apt/apt.conf.d/50gitea <<EOF
Unattended-Upgrade::Allowed-Origins {
"morph027:gitea";
};
EOF
```