diff options
| author | Lostt <lostt@noreply.codeberg.org> | 2026-05-28 01:15:53 +0200 |
|---|---|---|
| committer | Lostt <lostt@noreply.codeberg.org> | 2026-05-28 01:15:53 +0200 |
| commit | 0881ad19a3d90ee8d9031a45cbccf9329ad56301 (patch) | |
| tree | ecd37276d588e4e865962b435b4cfeffb5181ce3 /docs | |
| parent | da891e09a48a77fd5572c2694bab38769bab874f (diff) | |
| download | alicelinux-0881ad19a3d90ee8d9031a45cbccf9329ad56301.tar.gz alicelinux-0881ad19a3d90ee8d9031a45cbccf9329ad56301.zip | |
added community repo stuff
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/install.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/install.md b/docs/install.md index 923d76f7..e3e7b189 100644 --- a/docs/install.md +++ b/docs/install.md @@ -85,6 +85,13 @@ I'm gonna use directory `/var/lib/repos/core` and `/var/lib/repos/extra` for `co # echo 'APKG_REPO="/var/lib/repos/core /var/lib/repos/extra"' >> /etc/apkg.conf ``` +You can also create a directory the community repo. +> NOTE: The community repo is not held to the same standards as the official repos. +> Additionally all repo paths must be declared in the APKG_REPO variable, separated by a single space. +``` +# echo 'APKG_REPO="/var/lib/repos/core /var/lib/repos/extra /var/lib/repos/community"' >> /etc/apkg.conf +``` + > NOTE: All repo paths must be declared in the APKG_REPO variable, separated by a single space. Next, we will set up directories for `packages`, `sources`, and `work`. By default, these directories are inside the package template, but we will change them to `/var/cache/pkg`, `/var/cache/src`, and `/var/cache/work` respectively. You can change these to any location where you want to store these files. @@ -112,6 +119,13 @@ Configure reposync.conf # echo 'https://codeberg.org/emmett1/alicelinux|extra|/var/lib/repos/extra' >> /etc/reposync.conf ``` +If you also want the community repo, add it as well. +> NOTE: The community repo is not held to the same standards as the official repos. +``` +# echo 'https://codeberg.org/emmett1/alicelinux|community|/var/lib/repos/community' >> /etc/reposync.conf +``` + + Now run `reposync` to sync latest package templates. ``` # reposync |