HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: //usr/share/postgresql-common/pg_updateaptconfig
#!/bin/sh

# Tell apt which PostgreSQL versions have clusters present

set -eu

APTCONF="/etc/apt/apt.conf.d/01autoremove-postgresql"
TMPCONF="$(mktemp --tmpdir pg_updateaptconfig.XXXXXX)"
trap "rm -f $TMPCONF" EXIT

cat > $TMPCONF <<EOF
// NO NOT EDIT!
// File maintained by /usr/share/postgresql-common/pg_updateaptconfig.
//
// Mark all PostgreSQL packages as NeverAutoRemove for which PostgreSQL
// clusters exist. This is especially important when the "postgresql" meta
// package changes its dependencies to a new version, which might otherwise
// trigger the old postgresql-NN package to be automatically removed, rendering
// the old database cluster inaccessible.

APT
{
  NeverAutoRemove
  {
EOF

pg_lsclusters -h | cut -d ' ' -f 1 | uniq | while read version; do
    echo "    \"^postgresql.*-$version\";" >> $TMPCONF
done

cat >> $TMPCONF <<EOF
  };
};
EOF

if ! cmp --silent $TMPCONF $APTCONF; then
    cp $TMPCONF $APTCONF
    chmod 444 $APTCONF
fi