mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-14 20:25:41 +00:00
12 lines
308 B
Bash
12 lines
308 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "install" ] || [ "$1" = "upgrade" ] && [ -n "$2" ] && dpkg --compare-versions "$2" lt "44-3"; then
|
|
rm -f /lib/lsb/init-functions
|
|
dpkg-divert --remove --package systemd --rename \
|
|
--divert /lib/lsb/init-functions.systemd /lib/lsb/init-functions
|
|
fi
|
|
|
|
#DEBHELPER#
|