From 81c9069fbc05609003950d8601998234476e66e5 Mon Sep 17 00:00:00 2001 From: D3vil0p3r Date: Sun, 19 Nov 2023 19:14:43 +0100 Subject: [PATCH] Update repositories.mdx --- src/content/docs/en/configuration/repositories.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/docs/en/configuration/repositories.mdx b/src/content/docs/en/configuration/repositories.mdx index 9da97bc..01edb13 100644 --- a/src/content/docs/en/configuration/repositories.mdx +++ b/src/content/docs/en/configuration/repositories.mdx @@ -20,11 +20,11 @@ These repositories are set in `/etc/pacman.conf`. Here you can choose to add mor The structure of the Athena OS [repository package source](https://github.com/Athena-OS/package-source) is public and available for any contribution. The source files of each single package is inside the `packages` directory. Each package has `PKGBUILD` file for defining the `.pkg.tar.zst` package rules and `build.sh` is used for automating this process by generating the new `.pkg.tar.zst`, signing it, moving it and its signature to `x86_64` folder and delete all the temporary files. -When all packages are built, they are moved to the actual [Athena Repository](https://github.com/Athena-OS/athena-repository) and `update-database.sh` must be run for calling `update_repo.sh` script in order to update the `athena-repository.db*` files with the new built packages with `.pkg.tar.zst` extension stored in `x86_64` folder. +When all packages are built, they are moved to the actual [Athena Repository](https://github.com/Athena-OS/athena-repository) and `update-database.sh` must be run for calling `update_repo.sh` script in order to update the `athena.db*` files with the new built packages with `.pkg.tar.zst` extension stored in `x86_64` folder. The declaration of Athena repository is defined inside `/etc/pacman.conf` as: ``` -[athena-repository] +[athena] SigLevel = Optional TrustedOnly Include = /etc/pacman.d/athena-mirrorlist ``` @@ -41,7 +41,7 @@ It has been implemented by a GitHub Actions workflow that contains a bash script If you wish to use Athena repository in a different operating system, you can do this by adding the following to your **/etc/pacman.conf**: ``` -[athena-repository] +[athena] SigLevel = Optional TrustedOnly Include = /etc/pacman.d/athena-mirrorlist ```