HEX
Server: Apache/2.4.65 (Debian)
System: Linux wordpress-7cb4c6b6f6-bkxkg 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: //var/lib/dpkg/info/gzip.postinst
#!/bin/sh

set -e

# begin-remove-after: released:forky
if [ "$1" = configure ]; then
	for tool in zcat zcmp zdiff zegrep zfgrep zgrep; do
		if [ "$(dpkg-divert --truename "/usr/bin/$tool")" = "/usr/bin/$tool.usr-is-merged" ] &&
			[ "$(dpkg-divert --listpackage "/usr/bin/$tool")" = zutils ]; then
			# This diversion was added by preinst and. This
			# indicates that zutils was unpacked at preinst time
			# and is now removed. Thus we clean up the diversion.
			echo "Removing duplicated diversion of /bin/$tool after zutils is removed."
			dpkg-divert --rename --package zutils \
				--divert "/usr/bin/$tool.usr-is-merged" \
				--remove "/usr/bin/$tool"
		fi
	done
fi
# end-remove-after