File: postinst

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 (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/14/bin

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

#DEBHELPER#