File: prerm

package info (click to toggle)
postgresql-filedump 14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 324 kB
  • sloc: ansic: 3,097; sql: 116; makefile: 34; sh: 18
file content (14 lines) | stat: -rw-r--r-- 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

PGBINDIR=/usr/lib/postgresql/14/bin

case "$1" in
  remove|deconfigure)
    update-alternatives --quiet --remove pg_filedump $PGBINDIR/pg_filedump
    ;;
esac

#DEBHELPER#