HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/lib/dpkg/info/docbook-xml.preinst
#!/bin/sh

set -e

rm_conffile() {
	CONFFILE="$1"
	
	if [ -e "$CONFFILE" ]; then
		md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`"
		old_md5sum="`dpkg-query -W -f='${Conffiles}' docbook-xml | grep $CONFFILE | awk '{print $2}'`"
		if [ "$md5sum" != "$old_md5sum" ]; then
			echo "Obsolete conffile $CONFFILE has been modified by you."
			echo "Saving as $CONFFILE.dpkg-bak ..."
			mv -f "$CONFFILE" "$CONFFILE".dpkg-bak
		else
			echo "Removing obsolete conffile $CONFFILE ..."
			rm -f "$CONFFILE"
		fi
	fi
}

# converting a directory to symlinks during package upgrade doesn't work,
# lets remove the junk in here by hand
# bug 143780, problems caused by danging symlinks
if [ "$1" = upgrade ]; then
    rm -r /usr/share/sgml/docbook/dtd/xml/[1-9]* || true
fi

# handle obsolete dbgenent.ent files, that are placed in /etc/sgml/docbook-xml
# fixes bug #426058
# 4.5: obsoletes 3.1.7
if [ "$1" = remove ] || [ "$1" = upgrade ]; then
	if dpkg --compare-versions "$2" lt "4.5"; then
		rm_conffile "/etc/sgml/docbook-xml/3.1.7/dbgenent.ent"
	fi
fi