File: prerm

package info (click to toggle)
postgresql-filedump 13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 244 kB
  • sloc: ansic: 2,692; makefile: 32; sh: 18; sql: 15
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/13/bin

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

#DEBHELPER#