freebsd-ports/www/instiki/files/pkg-deinstall.in
Pav Lucistnik 27dfc6465a - Update to 0.11.0
The storage was moved to sqlite database! Follow steps in UPDATING.

PR:		ports/96301
Submitted by:	Alastair Rankine <arsptr@optusnet.com.au> (maintainer)
2006-05-01 14:32:28 +00:00

18 lines
404 B
Bash

#!/bin/sh
#
if [ "$2" != "DEINSTALL" ]; then
exit 0
fi
echo "comparing databases in %%PREFIX%%/%%INSTIKIDIR%%/db"
cd %%PREFIX%%/%%INSTIKIDIR%%/db || exit 1
if ! cmp -s -z production.db.sqlite3 default.db.sqlite3; then
echo "production.db.sqlite3 changed from default, not removing"
else
echo "production.db.sqlite3 unchanged from default, removing"
rm production.db.sqlite3
fi
exit 0