diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-01-21 14:35:24 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-01-21 14:35:24 +0800 |
commit | 2e60bbd6ffd0f757443474223a25e5faae1d9235 (patch) | |
tree | f2bc63344d7403a95224b53636d611d27cb328b8 /dns/powerdns-devel | |
parent | c8de327f9956b61c1779a70a41a5d8ba38b16f5c (diff) | |
download | freebsd-ports-gnome-2e60bbd6ffd0f757443474223a25e5faae1d9235.tar.gz freebsd-ports-gnome-2e60bbd6ffd0f757443474223a25e5faae1d9235.tar.zst freebsd-ports-gnome-2e60bbd6ffd0f757443474223a25e5faae1d9235.zip |
- remove obsolte files
Diffstat (limited to 'dns/powerdns-devel')
-rw-r--r-- | dns/powerdns-devel/pkg-deinstall | 26 | ||||
-rw-r--r-- | dns/powerdns-devel/pkg-install | 91 |
2 files changed, 0 insertions, 117 deletions
diff --git a/dns/powerdns-devel/pkg-deinstall b/dns/powerdns-devel/pkg-deinstall deleted file mode 100644 index ff77eb95919b..000000000000 --- a/dns/powerdns-devel/pkg-deinstall +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -# $OpenBSD$ -# -# powerdns de-installation - -set -e -PATH=/bin:/usr/bin:/sbin:/usr/sbin -PREFIX=${PKG_PREFIX:-/usr/local} -CONFIG_DIR=${SYSCONFDIR} -CONFIG_FILE=$CONFIG_DIR/pdns.conf - -if [ -f ${CONFIG_FILE} ]; then - echo - echo "+---------------" - echo "| To completely deinstall the $1 package you need" - echo "| to perform these steps as root:" - echo "|" - echo "| rm -rf $CONFIG_FILE" - echo "|" - echo "| Do not do this if you plan on re-installing $1" - echo "| at some future time." - echo "+---------------" - echo -fi - -exit 0 diff --git a/dns/powerdns-devel/pkg-install b/dns/powerdns-devel/pkg-install deleted file mode 100644 index 887a8d16c9ce..000000000000 --- a/dns/powerdns-devel/pkg-install +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/sh -# $OpenBSD$ -# -# Pre/post-installation setup of powerdns - -# exit on errors, use a sane path and install prefix -# -set -e -PATH=/bin:/usr/bin:/sbin:/usr/sbin -PREFIX=${PKG_PREFIX:-/usr/local} -CONFIG_DIR=${SYSCONFDIR} -CONFIG_FILE=$CONFIG_DIR/pdns.conf -SAMPLE_CONFIG_DIR=$PREFIX/share/examples/powerdns - -# Function: warn the user about possible problems with this port. -# -do_warning() -{ - echo "+---------------" - echo "| Be aware that PowerDNS still has some stability problems" - echo "| on OpenBSD. These problems might be the result of an too" - echo "| old or too buggy compiler." - echo "|" - echo "| In any case, don't expect PowerDNS to work flawlessly" - echo "| without dumping some core once in a while." - echo "+---------------" - echo -} - -# Function: tell the user what s/he needs to do to use the port just installed -# -do_notice() -{ - echo - echo "+---------------" - echo "| The existing $1 configuration files in $CONFIG_DIR," - echo "| have NOT been changed. You may want to compare them to the" - echo "| current sample files, $SAMPLE_CONFIG_DIR," - echo "| and update your configuration as needed." - echo "+---------------" - echo - - do_warning -} - -# Function: install the powerdns configuration file from the sample -# -do_install() -{ - install -d -o root -g wheel -m 755 $CONFIG_DIR - install -o root -g wheel -m 600 $SAMPLE_CONFIG_DIR/pdns.conf $CONFIG_FILE - echo - echo "+---------------" - echo "| The $1 configuration files in $CONFIG_DIR," - echo "| have been installed. Please view these files and change" - echo "| the configuration to meet your needs." - echo "+---------------" - echo - - do_warning -} - -# verify proper execution -# -if [ $# -ne 2 ]; then - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 -fi - -# Verify/process the command -# -case $2 in - PRE-INSTALL) - : nothing to pre-install for this port - ;; - POST-INSTALL) - if [ ! -d $CONFIG_DIR ]; then - do_install $1 - elif [ ! -f $CONFIG_FILE ]; then - do_install $1 - else - do_notice $1 - fi - ;; - *) - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 - ;; -esac - -exit 0 |