File: postinst

package info (click to toggle)
postgresql-filedump 9.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 164 kB
  • ctags: 103
  • sloc: ansic: 1,476; makefile: 55; sh: 15
file content (12 lines) | stat: -rw-r--r-- 196 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

case "$1" in
  configure)
    update-alternatives --quiet --install /usr/bin/pg_filedump pg_filedump \
      /usr/lib/postgresql/9.6/bin/pg_filedump 96
    ;;
esac

#DEBHELPER#