1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/net/iplog/pkg-install
William Grzybowski da44ba9aea net/iplog: support stage and use @sample
PR:		190095
Submitted by:	maintainer
2014-06-20 18:41:00 +00:00

24 lines
570 B
Bash

#!/bin/sh
#
# $FreeBSD: $
#
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
case $2 in
PRE-INSTALL)
:
;;
POST-INSTALL)
if [ -e ${PKG_PREFIX}/etc/iplog.rules ]; then
echo
echo "============================================================================"
echo "Hint: iplog changed its configuration file from ${PKG_PREFIX}/etc/iplog.rules"
echo " to ${PKG_PREFIX}/etc/iplog.conf"
echo
echo "See ${PKG_PREFIX}/etc/iplog.conf.sample for an example"
echo "============================================================================"
fi
;;
esac