mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-12 10:58:30 +00:00
15 lines
343 B
Bash
15 lines
343 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = remove ] || [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt 25-1; then
|
|
dpkg-divert --remove --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 -- "$@"
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|