mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-29 13:44:57 +00:00
13 lines
218 B
Bash
13 lines
218 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
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|