mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
951ea6cda9
Obtained from: OpenBSD
46 lines
1023 B
Bash
46 lines
1023 B
Bash
#! /bin/sh
|
|
# $OpenBSD: INSTALL,v 1.1 2000/06/11 01:15:53 fgsch Exp $
|
|
#
|
|
# Post-installation setup of totd - based on majordomo INSTALL script
|
|
# from daniel@reichardt.ch
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
|
|
do_install_configuration()
|
|
{
|
|
echo -n "Let's see if there is already a configuration file... "
|
|
if [ -f /etc/totd.conf ]; then
|
|
echo "yes"
|
|
echo "Please compare your existing configuration with"
|
|
echo "${PREFIX}/share/totd/totd.conf.sample"
|
|
else
|
|
echo "no"
|
|
echo -n "Copying sample configuration file... "
|
|
install -o root -g wheel -m 644 ${PREFIX}/share/totd/totd.conf.sample \
|
|
/etc/totd.conf
|
|
echo "ok"
|
|
echo "Please review new configuration /etc/totd.conf"
|
|
fi
|
|
}
|
|
|
|
if [ $# -ne 2 ]; then
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
fi
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
;;
|
|
POST-INSTALL)
|
|
do_install_configuration
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|