File: odbc-postgresql.postrm

package info (click to toggle)
psqlodbc 1%3A13.02.0000-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,148 kB
  • sloc: ansic: 51,638; sh: 11,491; cpp: 1,788; makefile: 175; sql: 157; xml: 31
file content (13 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

case $1 in
	remove)
		if test -x /usr/bin/odbcinst ; then
			odbcinst -u -d -n 'PostgreSQL ANSI'
			odbcinst -u -d -n 'PostgreSQL Unicode'
		fi ;;
esac

#DEBHELPER#