aboutsummaryrefslogtreecommitdiff
path: root/www/zope210/files
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2004-05-15 15:49:17 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2004-05-15 15:49:17 +0000
commit6f316ce2e89f972a4f22e1b97e1dda5e9d58cefa (patch)
treefb8d61358190cc429db453d54fb9920ccfde716f /www/zope210/files
parentea16706c62b542adc8f3b887256bf215bf914db6 (diff)
Notes
Diffstat (limited to 'www/zope210/files')
-rw-r--r--www/zope210/files/instance_message14
-rw-r--r--www/zope210/files/patch-lib-python-zdaemon-zdctl.py14
-rw-r--r--www/zope210/files/zope.conf_changes20
-rw-r--r--www/zope210/files/zope.sh53
4 files changed, 0 insertions, 101 deletions
diff --git a/www/zope210/files/instance_message b/www/zope210/files/instance_message
deleted file mode 100644
index 2521235227d8..000000000000
--- a/www/zope210/files/instance_message
+++ /dev/null
@@ -1,14 +0,0 @@
-**********************************************************************
-
-Zope instance successfully installed
-
-If Zope should get started automatically when the system starts,
-please add the following lines to /etc/rc.conf
-
-zope_enable="YES"
-zope_instances="%%ZOPEINSTANCEDIR%%"
-
-If there is already a zope_instances entry please add
-%%ZOPEINSTANCEDIR%% separated by a space.
-
-
diff --git a/www/zope210/files/patch-lib-python-zdaemon-zdctl.py b/www/zope210/files/patch-lib-python-zdaemon-zdctl.py
deleted file mode 100644
index 0bdc23957476..000000000000
--- a/www/zope210/files/patch-lib-python-zdaemon-zdctl.py
+++ /dev/null
@@ -1,14 +0,0 @@
---- lib/python/zdaemon/zdctl.py.orig Fri Oct 24 23:32:59 2003
-+++ lib/python/zdaemon/zdctl.py Fri Apr 2 01:55:59 2004
-@@ -208,9 +208,9 @@
- args += self._get_override("-z", "directory")
- args.extend(self.options.program)
- if self.options.daemon:
-- flag = os.P_WAIT
-- else:
- flag = os.P_NOWAIT
-+ else:
-+ flag = os.P_WAIT
- os.spawnvp(flag, args[0], args)
- elif not self.zd_pid:
- self.send_action("start")
diff --git a/www/zope210/files/zope.conf_changes b/www/zope210/files/zope.conf_changes
deleted file mode 100644
index ba227775266c..000000000000
--- a/www/zope210/files/zope.conf_changes
+++ /dev/null
@@ -1,20 +0,0 @@
---- work/Zope-2.7.0/skel/etc/zope.conf.in Fri Jan 9 00:34:08 2004
-+++ /data/infosys/zope/etc/zope.conf Wed Apr 14 09:36:46 2004
-@@ -78,7 +78,8 @@
- #
- # Example:
- #
--# products /home/chrism/projects/myproducts
-+products %%ZOPEBASEDIR%%/Products
-+products $INSTANCE/Products
-
-
- # Directive: environment
-@@ -137,6 +138,7 @@
- # Example:
- #
- # effective-user chrism
-+effective-user %%ZOPE_USER%%
-
-
- # Directive: enable-product-installation
diff --git a/www/zope210/files/zope.sh b/www/zope210/files/zope.sh
deleted file mode 100644
index 370a5f077360..000000000000
--- a/www/zope210/files/zope.sh
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-
-# Start or stop zope
-# $FreeBSD: /tmp/pcvs/ports/www/zope210/files/Attic/zope.sh,v 1.2 2004-04-20 14:29:26 perky Exp $
-
-# PROVIDE: zope
-# REQUIRE: DAEMON
-# BEFORE: LOGIN
-# KEYWORD: FreeBSD shutdown
-#
-prefix=%%PREFIX%%
-
-# Define these zope_* variables in one of these files:
-# /etc/rc.conf
-# /etc/rc.conf.local
-# /etc/rc.conf.d/gkrellmd
-#
-# DO NOT CHANGE THESE DEFAULT VALUES HERE
-#
-zope_enable=${zope_enable:-"NO"} # Enable gkrellmd
-zope_instances=${zope_instances:-""} # List of instancehome dirs
-
-. %%RC_SUBR%%
-
-name="zope"
-rcvar=`set_rcvar`
-load_rc_config $name
-
-if checkyesno zope_enable; then
-
- case "$1" in
- start)
- echo "Starting Zope"
- ;;
- stop)
- echo "Stopping Zope"
- ;;
- restart)
- echo "Restarting Zope"
- ;;
- *)
- echo "Unknown action \"$1\""
- ;;
- esac
-
- for instance in $zope_instances
- do
- if [ -r ${instance}/etc/${name}.conf -a -x ${instance}/bin/zopectl ]; then
- echo -n " Instance ${instance} -> "
- ${instance}/bin/zopectl $1
- fi
- done
-fi