summaryrefslogtreecommitdiff
path: root/dns/totd/pkg-install
blob: de1a95c9dfbfa75d4104256597619a4a4066173a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#! /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