From ce0dbf6b249956700c6a1705bf4ad85a09d53e8c Mon Sep 17 00:00:00 2001 From: Dawid Rycerz Date: Sun, 15 Feb 2026 21:27:00 +0100 Subject: feat: witryna 0.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch, cleanup, and status CLI commands. Persistent build state via state.json. Post-deploy hooks on success and failure with WITRYNA_BUILD_STATUS. Dependency diet (axum→tiny_http, clap→argh, tracing→log). Drop built-in rate limiting. Nix flake with NixOS module. Arch Linux PKGBUILD. Centralized version management. Co-Authored-By: Claude Opus 4.6 --- arch/witryna.install | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 arch/witryna.install (limited to 'arch/witryna.install') diff --git a/arch/witryna.install b/arch/witryna.install new file mode 100644 index 0000000..00199e0 --- /dev/null +++ b/arch/witryna.install @@ -0,0 +1,15 @@ +post_install() { + echo '==> Witryna has been installed.' + echo ' 1. Edit /etc/witryna/witryna.toml' + echo ' 2. Configure your container runtime:' + echo ' Podman: cp /usr/share/doc/witryna/examples/systemd/podman.conf \' + echo ' /etc/systemd/system/witryna.service.d/10-runtime.conf' + echo ' Docker: cp /usr/share/doc/witryna/examples/systemd/docker.conf \' + echo ' /etc/systemd/system/witryna.service.d/10-runtime.conf' + echo ' 3. systemctl daemon-reload && systemctl enable --now witryna' + echo ' See man witryna(1) and man witryna.toml(5) for documentation.' +} + +post_upgrade() { + : +} -- cgit v1.2.3