File: libpq3.postinst

package info (click to toggle)
postgresql 7.4.7-6sarge6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 11,168 kB
  • ctags: 27
  • sloc: sh: 1,903; makefile: 337; ansic: 204; perl: 69; sed: 6; tcl: 1
file content (12 lines) | stat: -rw-r--r-- 197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/bash
set -e
if [ "$1" = "configure" ]
then
	ldconfig

	# remove ancient /usr/doc symlink from libpgsql12
	if [ -L /usr/doc/libpgsql12 ]; then
	    rm /usr/doc/libpgsql12
	fi
fi
#DEBHELPER#