Version in base suite: 4.4.1-1

Version in overlay suite: 4.4.1-1+deb12u1

Base version: crmsh_4.4.1-1

Target version: crmsh_4.4.1-1+deb12u1

Base files: crmsh-doc_4.4.1-1_all.deb crmsh_4.4.1-1_all.deb

Target files: crmsh-doc_4.4.1-1+deb12u1_all.deb crmsh_4.4.1-1+deb12u1_all.deb

New files in second set of .debs, found in package crmsh

-rwxr-xr-x root/root DEBIAN/postrm

Control files of package crmsh: lines which differ

Suggests: bash-completion, cluster-glue, csync2, dmidecode, fdisk | util-linux (<< 2.29.2-3~), ocfs2-tools, openssh-server, parted, sbd, ufw, vim-addon-manager

Postinst files of package crmsh: lines which differ

# postinst script for crmsh
#
# see: dh_installdeb(1)
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
#
{++}
case "$1" in
configure)
if [ ! -e /var/log/crmsh ]; then
mkdir /var/log/crmsh
chown hacluster:haclient /var/log/crmsh
chmod 0775 /var/log/crmsh
fi
{++}
if [ ! -e /var/log/crmsh/crmsh.log ]; then
touch /var/log/crmsh/crmsh.log
chown hacluster:haclient /var/log/crmsh/crmsh.log
chmod 0664 /var/log/crmsh/crmsh.log
fi
;;
{++}
abort-upgrade|abort-remove|abort-deconfigure)
{++}
;;
{++}
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
{++}
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
{++}
{++}
# Automatically added by dh_python3
exit 0