From b0a5ab412bca3d2fb9e211f276b4fecaac4739a9 Mon Sep 17 00:00:00 2001 From: Ole-Morten Duesund Date: Sun, 24 Aug 2025 22:08:13 +0200 Subject: [PATCH] Add DEBIAN/conffiles to protect configuration files during upgrades MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added conffiles entry for /etc/skyview/config.json to ensure that user customizations are preserved during package upgrades. This follows Debian packaging best practices for configuration file handling. The conffiles mechanism will: - Prevent overwrites of modified config files during upgrades - Prompt users for action when package config differs from local config - Maintain backup files (.dpkg-old, .dpkg-new) for reference 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- debian/DEBIAN/conffiles | 1 + 1 file changed, 1 insertion(+) create mode 100644 debian/DEBIAN/conffiles diff --git a/debian/DEBIAN/conffiles b/debian/DEBIAN/conffiles new file mode 100644 index 0000000..124c49b --- /dev/null +++ b/debian/DEBIAN/conffiles @@ -0,0 +1 @@ +/etc/skyview/config.json