mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-05 19:13:46 +00:00
19 lines
555 B
Bash
19 lines
555 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = install ] || [ "$1" = upgrade ]; then
|
|
dpkg-divert --add --package systemd --rename \
|
|
--divert /lib/lsb/init-functions.systemd /lib/lsb/init-functions
|
|
fi
|
|
|
|
dpkg-maintscript-helper rm_conffile /etc/lsb-base-logging.sh 20-1 systemd -- "$@"
|
|
|
|
dpkg-maintscript-helper rm_conffile /etc/tmpfiles.d/legacy.conf 25-2 systemd -- "$@"
|
|
dpkg-maintscript-helper rm_conffile /etc/tmpfiles.d/systemd.conf 25-2 systemd -- "$@"
|
|
dpkg-maintscript-helper rm_conffile /etc/tmpfiles.d/x11.conf 25-2 systemd -- "$@"
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|