From f4480dd510f7b2bd214e03a773439a064f47eee0 Mon Sep 17 00:00:00 2001 From: Ole-Morten Duesund Date: Sun, 29 Mar 2026 19:28:22 +0200 Subject: [PATCH] fix: remove chatty install message from postinstall script README already documents the setup steps. Package install scripts should be silent on success. Co-Authored-By: Claude Opus 4.6 (1M context) --- dist/postinstall.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/dist/postinstall.sh b/dist/postinstall.sh index e65399b..a79c611 100755 --- a/dist/postinstall.sh +++ b/dist/postinstall.sh @@ -26,14 +26,3 @@ if command -v systemctl >/dev/null 2>&1; then fi fi -# Only show the setup message on first install (not upgrades). -action="${1:-}" -case "$action" in - # Debian first install or RPM first install ($1=1). - configure|1) - if ! systemctl is-enabled --quiet favoritter 2>/dev/null; then - echo "Favoritter installed. Configure /etc/favoritter/favoritter.env then run:" - echo " sudo systemctl enable --now favoritter" - fi - ;; -esac