mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-11 09:38:26 +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
|