summaryrefslogtreecommitdiff
path: root/net/phpldapadmin098/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/phpldapadmin098/files')
-rw-r--r--net/phpldapadmin098/files/pkg-deinstall.in26
-rw-r--r--net/phpldapadmin098/files/pkg-install.in24
-rw-r--r--net/phpldapadmin098/files/pkg-message.in21
3 files changed, 0 insertions, 71 deletions
diff --git a/net/phpldapadmin098/files/pkg-deinstall.in b/net/phpldapadmin098/files/pkg-deinstall.in
deleted file mode 100644
index 3231a32ddff6..000000000000
--- a/net/phpldapadmin098/files/pkg-deinstall.in
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD: /tmp/pcvs/ports/net/phpldapadmin098/files/Attic/pkg-deinstall.in,v 1.2 2008-03-09 04:45:39 rafan Exp $
-#
-
-case $2 in
- POST-DEINSTALL)
- cat <<EOMSG
-The phpldapadmin-suphp port has been deleted.
-If you are not upgrading and don't intend to use
-phpLDAPadmin any more then you may wish to delete
-the %%PLA_USR%% account, which can be done with
-the following command:
-
- # pw userdel %%PLA_USR%%
-EOMSG
- if [ -d %%WWWDIR%% ] ; then
- echo " # rm -rf %%WWWDIR%%/"
- fi
- echo
- ;;
-esac
-
-#
-# That's All Folks!
-#
diff --git a/net/phpldapadmin098/files/pkg-install.in b/net/phpldapadmin098/files/pkg-install.in
deleted file mode 100644
index da667b47e85f..000000000000
--- a/net/phpldapadmin098/files/pkg-install.in
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD: /tmp/pcvs/ports/net/phpldapadmin098/files/Attic/pkg-install.in,v 1.3 2009-12-24 20:50:22 miwi Exp $
-#
-
-PATH=/usr/sbin:/usr/bin:/bin ; export PATH
-
-pla_dir=%%WWWDIR%%
-pla_usr=%%PLA_USR%%
-pla_grp=%%PLA_GRP%%
-
-case $2 in
- POST-INSTALL)
-
- # Change ownership of the phpldapadm directory
-
- echo "===> Adjusting file ownership in $pla_dir"
- chown -R $pla_usr:$pla_grp $pla_dir || exit 1
- ;;
-esac
-
-#
-# That's All Folks!
-#
diff --git a/net/phpldapadmin098/files/pkg-message.in b/net/phpldapadmin098/files/pkg-message.in
deleted file mode 100644
index d3a905c60060..000000000000
--- a/net/phpldapadmin098/files/pkg-message.in
+++ /dev/null
@@ -1,21 +0,0 @@
-
-%%PKGNAME%% has been installed into:
-
- %%WWWDIR%%
-
-Please edit config.php to suit your needs.
-
-To make phpLDAPadmin available through your web site, I suggest that
-you add something like the following to httpd.conf:
-
- Alias /phpldapadmin/ "%%WWWDIR%%/htdocs/"
-
- <Directory "%%WWWDIR%%/htdocs">
- Options none
- AllowOverride none
-
- Order Deny,Allow
- Deny from all
- Allow from 127.0.0.1 .example.com
- </Directory>
-