File: prerm

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

set -e

case "$1" in
    remove|deconfigure)
	    update-alternatives --quiet --remove pg_filedump /usr/lib/postgresql/9.6/bin/pg_filedump
	    ;;
    *)
esac

#DEBHELPER#