apt-ostree/debian/apt-ostree.postrm.debhelper
robojerk 92f9f08c84
Some checks failed
Comprehensive CI/CD Pipeline / Security Audit (push) Waiting to run
Comprehensive CI/CD Pipeline / Package Validation (push) Waiting to run
Comprehensive CI/CD Pipeline / Status Report (push) Blocked by required conditions
Comprehensive CI/CD Pipeline / Build and Test (push) Has been cancelled
feat: add comprehensive systemd services and kernel integration to Debian packaging
- Add missing systemd services: bootstatus, countme, automatic, fix-shadow-mode
- Add kernel installation hooks and configuration files
- Add tmpfiles configuration for proper system integration
- Add D-Bus policy configuration for daemon communication
- Update debian/rules to install all new configuration files
- Package now includes 64 files (up from ~30) with complete system integration
- Resolves critical gap in apt-ostree Debian packaging for atomic system deployment
- All services properly configured for OSTree-based atomic updates
2025-09-01 18:20:58 -07:00

12 lines
613 B
Text

# Automatically added by dh_installsystemd/13.24.2
if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then
systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_installsystemd/13.24.2
if [ "$1" = "purge" ]; then
if [ -x "/usr/bin/deb-systemd-helper" ]; then
deb-systemd-helper purge 'apt-ostree-bootstatus.service' 'apt-ostree-countme.timer' 'apt-ostree-fix-shadow-mode.service' 'apt-ostreed-automatic.service' 'apt-ostreed-automatic.timer' 'apt-ostreed.service' 'apt-ostreed.socket' >/dev/null || true
fi
fi
# End automatically added section