summaryrefslogtreecommitdiff
path: root/ftp/horde-gollem/files
diff options
context:
space:
mode:
Diffstat (limited to 'ftp/horde-gollem/files')
-rw-r--r--ftp/horde-gollem/files/httpd.conf.gollem27
-rw-r--r--ftp/horde-gollem/files/pkg-deinstall.in27
-rw-r--r--ftp/horde-gollem/files/pkg-message.in14
3 files changed, 0 insertions, 68 deletions
diff --git a/ftp/horde-gollem/files/httpd.conf.gollem b/ftp/horde-gollem/files/httpd.conf.gollem
deleted file mode 100644
index 1730fcd83411..000000000000
--- a/ftp/horde-gollem/files/httpd.conf.gollem
+++ /dev/null
@@ -1,27 +0,0 @@
-# This is included in Apache's httpd.conf for Gollem
-#
-# For security, don't serve pages from the Gollem configuration and
-# library directories.
-#
-<Directory "/home/httpd/html/horde/gollem/config">
- order deny,allow
- deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/gollem/lib">
- order deny,allow
- deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/gollem/locale">
- order deny,allow
- deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/gollem/po">
- order deny,allow
- deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/gollem/templates">
- order deny,allow
- deny from all
-</Directory>
-# End of Gollem configuration ================
-
diff --git a/ftp/horde-gollem/files/pkg-deinstall.in b/ftp/horde-gollem/files/pkg-deinstall.in
deleted file mode 100644
index 5c399f4c3632..000000000000
--- a/ftp/horde-gollem/files/pkg-deinstall.in
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# Backup Gollem config files, if needed.
-
-if [ x$2 != xDEINSTALL ]; then
- exit
-fi
-
-if [ -z "${PACKAGE_BUILDING}" ]; then
- for cf in `ls %%GOLLEMDIR%%/config/*php`; do
- diff -bBqw $cf $cf.dist >/dev/null 2>&1
- case $? in
- 0) # original config file, will be deleted by pkg-plist
- ;;
- 1) # config file has been updated, must be backuped
- cp -p $cf $cf.previous
- echo "===> Backing-up..."
- echo "---> $cf has been saved ***"
- echo "---> as $cf.previous ***"
- ;;
- *) # not found?
- ;;
- esac
- done
-fi
diff --git a/ftp/horde-gollem/files/pkg-message.in b/ftp/horde-gollem/files/pkg-message.in
deleted file mode 100644
index db3eed4e83d1..000000000000
--- a/ftp/horde-gollem/files/pkg-message.in
+++ /dev/null
@@ -1,14 +0,0 @@
-************************************************************************
-Gollem has been installed in %%GOLLEMDIR%% with your blank
-configuration files.
-
-Horde must be configured; if not, see `pkg_info -D -x horde'.
-
-Note: you have to configure an appropriate backend in
-%%GOLLEMDIR%%/config/backends.php.
-
-Finally, you must login to Horde as a Horde Administrator to finish the
-configuration.
-
-To protect your configuration files, you have to restart Apache.
-************************************************************************