mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
cfb54574ad
PR: ports/152701 Submitted by: Anders F Bjorklund <afb@rpm5.org> (maintainer)
19 lines
463 B
Bash
19 lines
463 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# The RPM database directory
|
|
RPM_DATABASE_DIR=/var/local/lib/rpm
|
|
|
|
# Provide instructions for initialising the RPM database.
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
if [ -d "${RPM_DATABASE_DIR}" ]; then
|
|
echo ""
|
|
echo "Old RPM database found. If you are upgrading RPM from a"
|
|
echo "different version of Berkeley DB, you might need to rebuild"
|
|
echo "with the command:"
|
|
echo ""
|
|
echo " ${PKG_PREFIX}/bin/rpm --rebuilddb"
|
|
echo ""
|
|
fi
|
|
fi
|