Files
bsdports/data/postgresql/files/pkg-deinstall.in
2025-08-27 17:10:19 +02:00

16 lines
222 B
Bash

#!/bin/sh -x
PG_OWNER="%%PG_OWNER%%"
PG_GROUP="%%PG_GROUP%%"
PG_DB_DIR="%%PG_DB_DIR%%"
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
rmdir ${PG_DB_DIR} || (ls -l ${PG_DB_DIR} ; du -sch ${PG_DB_DIR})
;;
esac
#EOF