mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-14 05:15:56 +00:00
15 lines
281 B
Bash
15 lines
281 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = remove ]; 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
|