aboutsummaryrefslogtreecommitdiff
path: root/archivers/rpm5/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'archivers/rpm5/pkg-install')
-rw-r--r--archivers/rpm5/pkg-install19
1 files changed, 0 insertions, 19 deletions
diff --git a/archivers/rpm5/pkg-install b/archivers/rpm5/pkg-install
deleted file mode 100644
index db4592c15325..000000000000
--- a/archivers/rpm5/pkg-install
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-# The RPM database directory
-RPM_DATABASE_DIR=/var/lib/rpm
-
-# Provide instructions for initialising the RPM database.
-if [ "$2" = "POST-INSTALL" ]; then
- if [ ! -d "${RPM_DATABASE_DIR}" ]; then
- echo ""
- echo "No RPM database found. If you wish to use RPM to install"
- echo "RPM packages the you will need to initialise the database"
- echo "with the commands:"
- echo ""
- echo " mkdir -p ${RPM_DATABASE_DIR}"
- echo " ${PKG_PREFIX}/bin/rpm --initdb"
- echo ""
- fi
-fi