diff options
| -rw-r--r-- | docs/install.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/install.html b/docs/install.html index 25a9a4d2..67ddd4ac 100644 --- a/docs/install.html +++ b/docs/install.html @@ -227,6 +227,13 @@ alicelinux-rootfs-20240525.tar.xz: OK <p>I'm gonna use directory <code>/var/lib/repos/core</code> and <code>/var/lib/repos/extra</code> for <code>core</code> and <code>extra</code> repos respectively.</p> <pre><code># echo 'APKG_REPO="/var/lib/repos/core /var/lib/repos/extra"' >> /etc/apkg.conf </code></pre> +<p>You can also create a directory the community repo.</p> +<blockquote> +<p>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.</p> +</blockquote> +<pre><code># echo 'APKG_REPO="/var/lib/repos/core /var/lib/repos/extra /var/lib/repos/community"' >> /etc/apkg.conf +</code></pre> <blockquote> <p>NOTE: All repo paths must be declared in the APKG_REPO variable, separated by a single space.</p> </blockquote> @@ -246,6 +253,12 @@ alicelinux-rootfs-20240525.tar.xz: OK <pre><code># echo 'https://codeberg.org/emmett1/alicelinux|core|/var/lib/repos/core' >> /etc/reposync.conf # echo 'https://codeberg.org/emmett1/alicelinux|extra|/var/lib/repos/extra' >> /etc/reposync.conf </code></pre> +<p>If you also want the community repo, add it as well.</p> +<blockquote> +<p>NOTE: The community repo is not held to the same standards as the official repos.</p> +</blockquote> +<pre><code># echo 'https://codeberg.org/emmett1/alicelinux|community|/var/lib/repos/community' >> /etc/reposync.conf +</code></pre> <p>Now run <code>reposync</code> to sync latest package templates.</p> <pre><code># reposync </code></pre> |