summarylogtreecommitdiffstats
path: root/postgresql.install
blob: da99373c5fda44ed11128f448f391eaed344142d (plain)
1
2
3
4
5
6
7
8
post_upgrade() {
  # Prints the warning message if the database version on disk
  # does not match the PostgreSQL major version.

  if [ -d /var/lib/postgres/data ]; then
	/usr/bin/postgresql-check-db-dir /var/lib/postgres/data || true
  fi
}