ewpt3ch b6b677caea
ci / Tests (push) Has been cancelled
ci / Style (push) Has been cancelled
updated README
2026-05-08 20:33:34 -06:00
2026-05-08 19:22:43 -06:00
2026-05-08 19:12:36 -06:00
2026-05-08 10:37:29 -06:00
2026-04-30 13:58:11 -06:00
2026-04-15 14:13:28 -06:00
2026-04-11 04:47:23 +00:00
2026-05-08 20:33:34 -06:00
2026-05-08 19:15:52 -06:00
2026-05-08 20:33:34 -06:00
2026-05-08 12:18:42 -06:00

pkgstash

A sparse caching pacman mirror

Reduces external traffic in a local network with multiple arch linux systems with minimal config. It replicates the structure of a full mirror without downloading the whole mirror. Clients add this in mirrorlist and pacman just works.

Install

From PKGBUILD

Currently disributed as a binary. Download the PKGBUILD and pkgstash.install, use makepkg -i to install. See Arch User Repository for more information.

From source

clone the repo from repo root

go build ./cmd/server

Binary is called pkgstash, sample config, env and service files are in deploy/

Configure and Start

Edit /etc/pkgstash/pkgstash.env and change the token to a secure one. I used openssl like so:

openssl rand -base64 64
#/etc/pkgstash/pkgstash.env

PKGSTASH_TOKEN=<paste secure token here>

start with the included systemd service

systemctl enable --now pkgstash.service

systemctl enable --now pkgstash-refresh.timer

Technical details

  1. Go as the language. It has most of the tools necessary for a http server ins the standard library and it's performant.
  2. Singleflight to prevent 2 clients from causing the server to fetch the same package more than once.
  3. Pkgs are written atomically to prevent serving partial files
  4. Use multiple mirrors for redundancy and spread the load out.
  5. Refresh the remote db files on a schedule to enable prefetching of cached pkgs.

Roadmap

  • Prefetch and cache cleanup
  • Streaming on cache misses
  • cli admin tool
  • Custom repo
  • Build server
  • Automate builds on updated aur pkgs
    • Auto approve on version bump with not other changes in PKGSBUILD
    • Notify if a build needs approval
  • Web admin interface
S
Description
A caching pacman mirror and aur build server.
Readme GPL-2.0 361 KiB
Languages
Go 95.9%
Shell 3.8%
Makefile 0.3%