#!/bin/sh # $FreeBSD: head/net-mgmt/p5-jmx4perl/files/pkg-install.in 308361 2012-12-06 02:50:17Z tj $ ETCDIR=%%ETCDIR%% ETC_FILES="%%ETC_FILES%%" case $2 in POST-INSTALL) for f in ${ETC_FILES} do if [ ! -f ${ETCDIR}/${f} ]; then /bin/cp ${ETCDIR}/${f}.sample ${ETCDIR}/${f} fi done esac