Index: openacs-4/etc/daemontools/run
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/etc/daemontools/run,v
diff -u -r1.5.2.1 -r1.5.2.2
--- openacs-4/etc/daemontools/run	14 Jul 2004 18:14:17 -0000	1.5.2.1
+++ openacs-4/etc/daemontools/run	8 Apr 2005 20:36:53 -0000	1.5.2.2
@@ -1,9 +1,17 @@
 #!/bin/sh 
 
+# aolserver4 recommends descriptors limit (FD_SETSIZE) to be set to 1024, 
+# which is standard for most OS distributions
+# for freebsd systems, uncomment following line:
+# ulimit -n 1024
+
 # give time for Postgres to come up
-sleep 4
+sleep 10
 
 exec /usr/local/aolserver/bin/nsd-postgres -it /var/lib/aolserver/service0/etc/config.tcl -u service0 -g web
 
-# For AOLserver 4 using privileged ports (usually < 1024), add the flag
+# For AOLserver 4 using privileged ports (usually < 1024), add the flag:
 # -b youraddress:yourport
+# if also using ssl, the flag becomes:
+# -b youraddress:yourport,youraddress:sslport
+