freebsd-ports/security/pks/pkg-install
Sam Lawrance bab426bf73 Update to 0.9.6
- Add rcng startup
- No longer touch pksd.conf, only pksd.conf.sample
- Ensure the port builds against db2 from ports by deleting the included
  version.  Add post-patch bits to help this happen.
- Submitter takes maintainership

PR:		ports/85802
Submitted by:	Graham Todd <gtodd@bellanet.org> (new maintainer)
Approved by:	Jason Harris <jharris@widomaker.com> (maintainer)
2005-09-09 14:00:10 +00:00

22 lines
240 B
Bash

#!/bin/sh
#
# $FreeBSD$
PKGNAME=$1
STAGE=$2
case ${STAGE} in
PRE-INSTALL)
;;
POST-INSTALL)
DBDIR=/var/pks/db
MAILDIR=/var/pks/incoming
mkdir -p ${DBDIR} ${MAILDIR}
;;
*)
echo "Unexpected argument: ${STAGE}"
exit 1
;;
esac
exit 0