File: postinst

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 (13 lines) | stat: -rw-r--r-- 208 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

PGBINDIR=/usr/lib/postgresql/13/bin

case "$1" in
  configure)
    update-alternatives --quiet --install /usr/bin/pg_filedump pg_filedump $PGBINDIR/pg_filedump 100
    ;;
esac

#DEBHELPER#